graph-rework-2
noah metz 2023-07-02 12:51:22 -06:00
parent 300e735065
commit 8a5de1b0de
1 changed files with 1 additions and 1 deletions

@ -418,7 +418,7 @@ var gql_actions ThreadActions = ThreadActions{
UpdateStates(ctx, []GraphNode{thread}, func(nodes NodeMap)(error) { UpdateStates(ctx, []GraphNode{thread}, func(nodes NodeMap)(error) {
server_state := thread.State().(*GQLThreadState) server_state := thread.State().(*GQLThreadState)
for _, child := range(server_state.Children()) { for _, child := range(server_state.Children()) {
should_run := server_state.child_info[child.ID()].(*GQLThreadInfo) should_run := (server_state.child_info[child.ID()]).(*GQLThreadInfo)
if should_run.Started == true { if should_run.Started == true {
ChildGo(ctx, server_state, thread, child.ID(), should_run.RestoreAction) ChildGo(ctx, server_state, thread, child.ID(), should_run.RestoreAction)
} }