From 862c60015299b95e850da2b194c8aad6ac858c52 Mon Sep 17 00:00:00 2001 From: Peter Foster Date: Sun, 15 Feb 2026 08:59:51 +0000 Subject: [PATCH] Update Gitea provider to use public URL --- lib/providers/gitea.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/providers/gitea.ts b/lib/providers/gitea.ts index fdc51ee..a927221 100644 --- a/lib/providers/gitea.ts +++ b/lib/providers/gitea.ts @@ -61,7 +61,7 @@ export class GiteaProvider implements IssueProvider { // Extract repo info from git remote // For now, hardcode for our Gitea instance - this.baseUrl = "http://192.168.1.150:3000"; + this.baseUrl = "https://pfoster.dynu.net"; this.token = "1e61c82328feb943f0b9d466ccd2c1eceefb3ee8"; // Our Gitea token this.owner = "peter"; this.repo = "clawd";