diff --git a/frontend/src/stores/browser.js b/frontend/src/stores/browser.js index 7a94be1..69b0616 100644 --- a/frontend/src/stores/browser.js +++ b/frontend/src/stores/browser.js @@ -601,9 +601,8 @@ const useBrowserStore = defineStore('browser', { if (isEmpty(match)) { match = '*' } else if (!isRedisGlob(match)) { - const separator = this.getSeparator(server) - if (!endsWith(prefix, separator + '*')) { - match = prefix + separator + '*' + if (!endsWith(prefix, '*')) { + match = prefix + '*' } } return this.scanKeys({ server, db, match, matchType, loadType: all ? 1 : 0 })