From 0942fac15b52c5054a705bdf2189b8a648ca4689 Mon Sep 17 00:00:00 2001 From: ffont Date: Tue, 15 Oct 2024 14:11:39 +0200 Subject: [PATCH] Fix free cultural works filter value for case sensitiveness --- freesound/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freesound/settings.py b/freesound/settings.py index 6398ede81..15205d942 100644 --- a/freesound/settings.py +++ b/freesound/settings.py @@ -564,7 +564,7 @@ # ------------------------------------------------------------------------------- # Search engine -FCW_FILTER_VALUE = '("attribution" OR "creative commons 0")' +FCW_FILTER_VALUE = '("Attribution" OR "Creative Commons 0")' # Define the names of some of the indexed sound fields which are to be used later SEARCH_SOUNDS_FIELD_ID = 'sound_id'