about summary refs log tree commit diff stats
path: root/commands/msgview
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 /commands/msgview
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 'commands/msgview')
-rw-r--r--commands/msgview/close.go2
-rw-r--r--commands/msgview/msgview.go2
-rw-r--r--commands/msgview/next-part.go2
-rw-r--r--commands/msgview/next.go6
-rw-r--r--commands/msgview/open.go4
-rw-r--r--commands/msgview/save.go6
-rw-r--r--commands/msgview/toggle-headers.go2
7 files changed, 12 insertions, 12 deletions
diff --git a/commands/msgview/close.go b/commands/msgview/close.go
index ed86405..37f66ad 100644
--- a/commands/msgview/close.go
+++ b/commands/msgview/close.go
@@ -3,7 +3,7 @@ package msgview
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Close struct{}
diff --git a/commands/msgview/msgview.go b/commands/msgview/msgview.go
index d60549e..0f0108e 100644
--- a/commands/msgview/msgview.go
+++ b/commands/msgview/msgview.go
@@ -1,7 +1,7 @@
 package msgview
 
 import (
-	"git.sr.ht/~sircmpwn/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/commands"
 )
 
 var (
diff --git a/commands/msgview/next-part.go b/commands/msgview/next-part.go
index a98e96a..f44ffab 100644
--- a/commands/msgview/next-part.go
+++ b/commands/msgview/next-part.go
@@ -4,7 +4,7 @@ import (
 	"fmt"
 	"strconv"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type NextPrevPart struct{}
diff --git a/commands/msgview/next.go b/commands/msgview/next.go
index 978cf10..4291a6a 100644
--- a/commands/msgview/next.go
+++ b/commands/msgview/next.go
@@ -1,9 +1,9 @@
 package msgview
 
 import (
-	"git.sr.ht/~sircmpwn/aerc/commands/account"
-	"git.sr.ht/~sircmpwn/aerc/lib"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/commands/account"
+	"git.sr.ht/~rjarry/aerc/lib"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type NextPrevMsg struct{}
diff --git a/commands/msgview/open.go b/commands/msgview/open.go
index 57e7227..bcfe2b4 100644
--- a/commands/msgview/open.go
+++ b/commands/msgview/open.go
@@ -8,8 +8,8 @@ import (
 	"os"
 	"time"
 
-	"git.sr.ht/~sircmpwn/aerc/lib"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/lib"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Open struct{}
diff --git a/commands/msgview/save.go b/commands/msgview/save.go
index 5d01e4d..713c6d1 100644
--- a/commands/msgview/save.go
+++ b/commands/msgview/save.go
@@ -12,9 +12,9 @@ import (
 	"git.sr.ht/~sircmpwn/getopt"
 	"github.com/mitchellh/go-homedir"
 
-	"git.sr.ht/~sircmpwn/aerc/commands"
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Save struct{}
diff --git a/commands/msgview/toggle-headers.go b/commands/msgview/toggle-headers.go
index e777d9b..75f7e46 100644
--- a/commands/msgview/toggle-headers.go
+++ b/commands/msgview/toggle-headers.go
@@ -3,7 +3,7 @@ package msgview
 import (
 	"fmt"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type ToggleHeaders struct{}