alpha
Login
or
Join now
dunkirk.sh
/
core
forked from
tangled.org/core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix default value for resubmitCheck
author
Akshay
date
1 year ago
(Apr 5, 2025, 10:02 PM +0100)
commit
49463f8a
49463f8ab504b58d1b07d32806108b076bff3fc2
parent
ffffbeea
ffffbeea59b3fabd6e58a1ceee8a87cfb637d4ae
+2
-2
1 changed file
Expand all
Collapse all
Unified
Split
appview
state
pull.go
+2
-2
appview/state/pull.go
Reviewed
···
55
55
}
56
56
57
57
mergeCheckResponse := s.mergeCheck(f, pull)
58
58
-
var resubmitResult pages.ResubmitResult
58
58
+
resubmitResult := pages.Unknown
59
59
if user.Did == pull.OwnerDid {
60
60
resubmitResult = s.resubmitCheck(f, pull)
61
61
}
···
115
115
}
116
116
117
117
mergeCheckResponse := s.mergeCheck(f, pull)
118
118
-
var resubmitResult pages.ResubmitResult
118
118
+
resubmitResult := pages.Unknown
119
119
if user.Did == pull.OwnerDid {
120
120
resubmitResult = s.resubmitCheck(f, pull)
121
121
}