diff --git a/ghost/admin/app/controllers/members.js b/ghost/admin/app/controllers/members.js index 0149df9f62..45598c6d5c 100644 --- a/ghost/admin/app/controllers/members.js +++ b/ghost/admin/app/controllers/members.js @@ -222,10 +222,10 @@ export default class MembersController extends Controller { if (filterParam) { // If the provided filter param is a single filter related to newsletter subscription status // remove the surrounding brackets to prevent https://github.com/TryGhost/NQL/issues/16 - const NEWSLETTER_SUBSCRIPTION_STATUS_RE = /^\(subscribed:(?:true|false)[+,]email_disabled:[01]\)$/; - const SPECIFIC_NEWSLETTER_SUBSCRIPTION_STATUS_RE = /^\(newsletters\.slug:[^()]+[+,]email_disabled:[01]\)$/; + const BRACKETS_SURROUNDED_RE = /^\(.*\)$/; + const MULTIPLE_GROUPS_RE = /\).*\(/; - if (NEWSLETTER_SUBSCRIPTION_STATUS_RE.test(filterParam) || SPECIFIC_NEWSLETTER_SUBSCRIPTION_STATUS_RE.test(filterParam)) { + if (BRACKETS_SURROUNDED_RE.test(filterParam) && !MULTIPLE_GROUPS_RE.test(filterParam)) { filterParam = filterParam.slice(1, -1); } } diff --git a/ghost/admin/package.json b/ghost/admin/package.json index c76d8b8260..a4d1114d91 100644 --- a/ghost/admin/package.json +++ b/ghost/admin/package.json @@ -1,6 +1,6 @@ { "name": "ghost-admin", - "version": "5.75.0", + "version": "5.75.1", "description": "Ember.js admin client for Ghost", "author": "Ghost Foundation", "homepage": "http://ghost.org", diff --git a/ghost/core/package.json b/ghost/core/package.json index a5ceededfa..f5252f616b 100644 --- a/ghost/core/package.json +++ b/ghost/core/package.json @@ -1,6 +1,6 @@ { "name": "ghost", - "version": "5.75.0", + "version": "5.75.1", "description": "The professional publishing platform", "author": "Ghost Foundation", "homepage": "https://ghost.org",