aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Cloud.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-04-08 08:25:35 +0000
committerMario <mario@mariovavti.com>2021-04-08 08:25:35 +0000
commitec4526b5f47af05bc0ffe0bb5f997d3d82b14b5a (patch)
tree88cb6d959ca12fc95303a06cf2cc5f0c135f6111 /Zotlabs/Module/Cloud.php
parent806f50eee3c8d63c8c8bceb89a3595e14cc303c5 (diff)
downloadvolse-hubzilla-ec4526b5f47af05bc0ffe0bb5f997d3d82b14b5a.tar.gz
volse-hubzilla-ec4526b5f47af05bc0ffe0bb5f997d3d82b14b5a.tar.bz2
volse-hubzilla-ec4526b5f47af05bc0ffe0bb5f997d3d82b14b5a.zip
cloud: instead of asking for a page reload when expiriencing a not implemnented exception just go there right away - issue #1556
Diffstat (limited to 'Zotlabs/Module/Cloud.php')
-rw-r--r--Zotlabs/Module/Cloud.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Module/Cloud.php b/Zotlabs/Module/Cloud.php
index 3d1b97980..6ff95b5cf 100644
--- a/Zotlabs/Module/Cloud.php
+++ b/Zotlabs/Module/Cloud.php
@@ -123,7 +123,8 @@ class Cloud extends Controller {
notice( t('Permission denied') . EOL);
}
elseif($err instanceof \Sabre\DAV\Exception\NotImplemented) {
- notice( t('Please refresh page') . EOL);
+ // notice( t('Please refresh page') . EOL);
+ goaway(z_root() . '/' . \App::$query_string);
}
else {
notice( t('Unknown error') . EOL);