+1
-2
appview/state/pull.go
+1
-2
appview/state/pull.go
···
8
"io"
9
"log"
10
"net/http"
11
-
"net/url"
12
"strconv"
13
"time"
14
···
1372
return
1373
}
1374
1375
-
hiddenRef := url.QueryEscape(fmt.Sprintf("hidden/%s/%s", pull.PullSource.Branch, pull.TargetBranch))
1376
comparison, err := ksClient.Compare(forkRepo.Did, forkRepo.Name, hiddenRef, pull.PullSource.Branch)
1377
if err != nil {
1378
log.Printf("failed to compare branches: %s", err)
···
8
"io"
9
"log"
10
"net/http"
11
"strconv"
12
"time"
13
···
1371
return
1372
}
1373
1374
+
hiddenRef := fmt.Sprintf("hidden/%s/%s", pull.PullSource.Branch, pull.TargetBranch)
1375
comparison, err := ksClient.Compare(forkRepo.Did, forkRepo.Name, hiddenRef, pull.PullSource.Branch)
1376
if err != nil {
1377
log.Printf("failed to compare branches: %s", err)