forked from tangled.org/core
this repo has no description

fix default value for resubmitCheck

Changed files
+2 -2
appview
state
+2 -2
appview/state/pull.go
···
}
mergeCheckResponse := s.mergeCheck(f, pull)
-
var resubmitResult pages.ResubmitResult
+
resubmitResult := pages.Unknown
if user.Did == pull.OwnerDid {
resubmitResult = s.resubmitCheck(f, pull)
}
···
}
mergeCheckResponse := s.mergeCheck(f, pull)
-
var resubmitResult pages.ResubmitResult
+
resubmitResult := pages.Unknown
if user.Did == pull.OwnerDid {
resubmitResult = s.resubmitCheck(f, pull)
}