1
0
Fork 0

Fix incoming home timeline statuses spawn into thread.

This commit is contained in:
Nicolas Perriault 2017-05-29 23:27:04 +02:00
parent 54ef5210df
commit f717b6857f
No known key found for this signature in database
GPG Key ID: DA5E4C83904F7A2A
1 changed files with 3 additions and 3 deletions

View File

@ -117,7 +117,7 @@ update msg model =
isThreadMember : Thread -> Status -> Bool
isThreadMember thread status =
case ( thread.status, thread.context ) of
( Just status, Just context ) ->
( Just threadStatus, Just context ) ->
case status.in_reply_to_id of
Nothing ->
False
@ -126,7 +126,7 @@ isThreadMember thread status =
let
threadStatusIds =
List.concat
[ [ status.id ]
[ [ threadStatus.id ]
, List.map .id context.ancestors
, List.map .id context.descendants
]
@ -153,7 +153,7 @@ appendToThreadDescendants ({ context } as thread) status =
updateCurrentViewWithStatus : Status -> Model -> Model
updateCurrentViewWithStatus status ({ accountInfo } as model) =
case model.currentView of
ThreadView ({ context } as thread) ->
ThreadView thread ->
if isThreadMember thread status then
{ model | currentView = ThreadView (appendToThreadDescendants thread status) }
else