From 926e951dfc61aa1c43b2969980a061e12f07a478 Mon Sep 17 00:00:00 2001 From: Yurii Date: Mon, 5 Jan 2026 11:15:37 +0200 Subject: [PATCH] router options string to object --- client/src/router.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/router.js b/client/src/router.js index 751ad456b6..4fc49b4994 100644 --- a/client/src/router.js +++ b/client/src/router.js @@ -528,7 +528,7 @@ const Router = Backbone.Router.extend(/** @lends Router# */ { } if (string.indexOf('&') === -1 && string.indexOf('=') === -1) { - return string; + return {[string]: true}; } const options = {};