From 79793669783496a61b0897fb10e395e3d68d92cc Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Tue, 15 Oct 2024 21:14:50 -0400 Subject: [PATCH] Adjust the default value for maturity Adjust the default value for maturity --- scripts/system/places/places.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/system/places/places.js b/scripts/system/places/places.js index c636b8fccb..fa22d536b7 100644 --- a/scripts/system/places/places.js +++ b/scripts/system/places/places.js @@ -20,7 +20,7 @@ var SETTING_METAVERSE_TO_FETCH = "placesAppMetaverseToFetch"; var SETTING_PINNED_METAVERSE = "placesAppPinnedMetaverse"; var SETTING_MATURITY_FILTER = "placesAppMaturityFilter"; - var DEFAULT_MATURITY = ["teen", "everyone"]; //["adult", "mature", "teen", "everyone", "unrated"]; + var DEFAULT_MATURITY = ["adult", "mature", "teen", "everyone", "unrated"]; var REQUEST_TIMEOUT = 10000; //10 seconds var httpRequest = null;