summaryrefslogtreecommitdiff
path: root/patchset.Get.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-06 15:22:31 -0500
committerJeff Carr <[email protected]>2025-09-06 15:22:31 -0500
commitbf031595e359548f0a0d7197140195f1486c168e (patch)
tree13805532605edb8e978389735c5b28f982186324 /patchset.Get.go
parentc0b9518c0db72aa40e4e37e3d90341b32b364bd5 (diff)
patchset http routines
Diffstat (limited to 'patchset.Get.go')
-rw-r--r--patchset.Get.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/patchset.Get.go b/patchset.Get.go
index c650a82..5780fab 100644
--- a/patchset.Get.go
+++ b/patchset.Get.go
@@ -8,9 +8,7 @@ import (
// retrieves current patches from forge
func (f *Forge) GetPatches() error {
- url := f.forgeURL + "GetPatchsets"
- log.Info("GetPatchsets() url", url)
- body, err := f.HttpPost(url, nil)
+ body, err := f.HttpPost("junk", "GetPatchsets", nil)
if err != nil {
log.Info("httpPost() failed:", err)
return err