tangled
alpha
login
or
join now
lewis.moe
/
tangled-core
0
fork
atom
Monorepo for Tangled
0
fork
atom
overview
issues
1
pulls
pipelines
appview: state: add missing returns in pulls
Akshay
10 months ago
56f6fbc7
e33c6bac
+2
1 changed file
expand all
collapse all
unified
split
appview
state
pull.go
+2
appview/state/pull.go
···
1080
1080
1081
1081
if err = validateResubmittedPatch(pull, patch); err != nil {
1082
1082
s.pages.Notice(w, "resubmit-error", err.Error())
1083
1083
+
return
1083
1084
}
1084
1085
1085
1086
tx, err := s.db.BeginTx(r.Context(), nil)
···
1321
1322
1322
1323
if err = validateResubmittedPatch(pull, patch); err != nil {
1323
1324
s.pages.Notice(w, "resubmit-error", err.Error())
1325
1325
+
return
1324
1326
}
1325
1327
1326
1328
if sourceRev == pull.Submissions[pull.LastRoundNumber()].SourceRev {