Monorepo for Tangled tangled.org

fix default value for resubmitCheck

Changed files
+2 -2
appview
state
+2 -2
appview/state/pull.go
··· 55 } 56 57 mergeCheckResponse := s.mergeCheck(f, pull) 58 - var resubmitResult pages.ResubmitResult 59 if user.Did == pull.OwnerDid { 60 resubmitResult = s.resubmitCheck(f, pull) 61 } ··· 115 } 116 117 mergeCheckResponse := s.mergeCheck(f, pull) 118 - var resubmitResult pages.ResubmitResult 119 if user.Did == pull.OwnerDid { 120 resubmitResult = s.resubmitCheck(f, pull) 121 }
··· 55 } 56 57 mergeCheckResponse := s.mergeCheck(f, pull) 58 + resubmitResult := pages.Unknown 59 if user.Did == pull.OwnerDid { 60 resubmitResult = s.resubmitCheck(f, pull) 61 } ··· 115 } 116 117 mergeCheckResponse := s.mergeCheck(f, pull) 118 + resubmitResult := pages.Unknown 119 if user.Did == pull.OwnerDid { 120 resubmitResult = s.resubmitCheck(f, pull) 121 }