]> git.mxchange.org Git - friendica.git/commitdiff
Remove trailing slash in `update_` calls
authorPhilipp <admin@philipp.info>
Tue, 15 Nov 2022 19:11:38 +0000 (20:11 +0100)
committerPhilipp <admin@philipp.info>
Tue, 15 Nov 2022 19:11:38 +0000 (20:11 +0100)
src/Content/Conversation.php
static/routes.config.php
view/js/main.js

index 522de7b5730c30b85a045affdf498b73d557107f..ec317824b67b72cad1780a6cf5e9c52286685c39 100644 (file)
@@ -493,7 +493,7 @@ class Conversation
                        if (!$update) {
                                $live_update_div = '<div id="live-notes"></div>' . "\r\n"
                                        . "<script> var profile_uid = " . $this->session->getLocalUserId()
-                                       . "; var netargs = '/?f='; </script>\r\n";
+                                       . "; var netargs = '?f='; </script>\r\n";
                        }
                } elseif ($mode === 'display') {
                        $items = $this->addChildren($items, false, $order, $uid, $mode);
@@ -520,7 +520,7 @@ class Conversation
                        if (!$update) {
                                $live_update_div = '<div id="live-contact"></div>' . "\r\n"
                                        . "<script> var profile_uid = -1; var netargs = '" . substr($this->args->getCommand(), 8)
-                                       ."/?f='; </script>\r\n";
+                                       ."?f='; </script>\r\n";
                        }
                } elseif ($mode === 'search') {
                        $live_update_div = '<div id="live-search"></div>' . "\r\n";
index bed1dfdee538bb6da8ee313c8e0226be8fef4622..7a86d8d0344e79d381c56530a414bdafd57136ad 100644 (file)
@@ -642,7 +642,7 @@ return [
 
        '/update_community[/{content}]'  => [Module\Update\Community::class,      [R::GET]],
 
-       '/update_display[/]'             => [Module\Update\Display::class, [R::GET]],
+       '/update_display'                => [Module\Update\Display::class, [R::GET]],
 
        '/update_network' => [
                '[/]'                        => [Module\Update\Network::class, [R::GET]],
index 93340dc37f6fdcb6ba58321489de3c93caf97977..e11585381c0d144188d5eb7bfc4a4ee569d20123 100644 (file)
@@ -590,7 +590,7 @@ function liveUpdate(src) {
 
        var orgHeight = $("section").height();
 
-       var udargs = ((netargs.length) ? '/' + netargs : '');
+       var udargs = ((netargs.length) ? netargs : '');
 
        var update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&force=' + (force ? 1 : 0) + '&item=' + update_item;