@arsedizioni/ars-utils 21.1.81 → 21.1.83

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2159,7 +2159,7 @@ class ClipperSearchUtils {
2159
2159
  */
2160
2160
  static normalizeTextQuery2(text) {
2161
2161
  // Add quotes only if there are no quoted elements, no '+', and no ' -'
2162
- if (text?.includes('"') && !text?.includes('+') && !text?.includes(' -')) {
2162
+ if (!text?.includes('"') && !text?.includes('+') && !text?.includes(' -')) {
2163
2163
  return '"' + text + '"';
2164
2164
  }
2165
2165
  return text;