about summary refs log tree commit diff stats
path: root/worker/notmuch
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2021-11-05 10:19:46 +0100
committerRobin Jarry <robin@jarry.cc>2021-11-05 10:21:45 +0100
commit0d645bcebda8d764c4f21f71ded1e3627d6e8837 (patch)
tree5869c22738e34d8da223c06b5a5289f08825a8f7 /worker/notmuch
parentb2e9df623f638ecda539ec69f30a31b6693df2d1 (diff)
downloadaerc-0d645bcebda8d764c4f21f71ded1e3627d6e8837.tar.gz
go.mod: change base git url
I'm not sure what are the implications but it seems required.

Link: https://github.com/golang/go/issues/20883
Signed-off-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'worker/notmuch')
-rw-r--r--worker/notmuch/message.go6
-rw-r--r--worker/notmuch/worker.go14
2 files changed, 10 insertions, 10 deletions
diff --git a/worker/notmuch/message.go b/worker/notmuch/message.go
index 10fbabc..41bfd0b 100644
--- a/worker/notmuch/message.go
+++ b/worker/notmuch/message.go
@@ -8,9 +8,9 @@ import (
 	"io"
 	"os"
 
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/worker/lib"
-	notmuch "git.sr.ht/~sircmpwn/aerc/worker/notmuch/lib"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/worker/lib"
+	notmuch "git.sr.ht/~rjarry/aerc/worker/notmuch/lib"
 	"github.com/emersion/go-message"
 	_ "github.com/emersion/go-message/charset"
 )
diff --git a/worker/notmuch/worker.go b/worker/notmuch/worker.go
index 637bb4d..f8f8b11 100644
--- a/worker/notmuch/worker.go
+++ b/worker/notmuch/worker.go
@@ -11,13 +11,13 @@ import (
 	"strings"
 	"time"
 
-	"git.sr.ht/~sircmpwn/aerc/config"
-	"git.sr.ht/~sircmpwn/aerc/lib/uidstore"
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/worker/handlers"
-	"git.sr.ht/~sircmpwn/aerc/worker/lib"
-	notmuch "git.sr.ht/~sircmpwn/aerc/worker/notmuch/lib"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/config"
+	"git.sr.ht/~rjarry/aerc/lib/uidstore"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/worker/handlers"
+	"git.sr.ht/~rjarry/aerc/worker/lib"
+	notmuch "git.sr.ht/~rjarry/aerc/worker/notmuch/lib"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 	"github.com/mitchellh/go-homedir"
 )