summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/post.go2
-rw-r--r--app/post_test.go6
2 files changed, 7 insertions, 1 deletions
diff --git a/app/post.go b/app/post.go
index bf4725e77..6890d1dd9 100644
--- a/app/post.go
+++ b/app/post.go
@@ -890,7 +890,7 @@ func (a *App) ImageProxyAdder() func(string) string {
}
return func(url string) string {
- if strings.HasPrefix(url, proxyURL) {
+ if url == "" || strings.HasPrefix(url, proxyURL) {
return url
}
diff --git a/app/post_test.go b/app/post_test.go
index 9854bb707..3f3783265 100644
--- a/app/post_test.go
+++ b/app/post_test.go
@@ -211,6 +211,12 @@ func TestImageProxy(t *testing.T) {
ImageURL: "http://mydomain.com/myimage",
ProxiedImageURL: "https://127.0.0.1/x1000/http://mydomain.com/myimage",
},
+ "willnorris/imageproxy_EmptyImageURL": {
+ ProxyType: "willnorris/imageproxy",
+ ProxyURL: "https://127.0.0.1",
+ ImageURL: "",
+ ProxiedImageURL: "",
+ },
"willnorris/imageproxy_WithSigning": {
ProxyType: "willnorris/imageproxy",
ProxyURL: "https://127.0.0.1",