From 80d223e4d1d12bd6807b33de4aa956c2ad9b42a9 Mon Sep 17 00:00:00 2001 From: Index Date: Wed, 10 Jul 2024 17:36:33 -0500 Subject: [PATCH] fix: copyable places feature always enabled --- js/places/place-view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/places/place-view.js b/js/places/place-view.js index 8a60cb3..dbca9c4 100644 --- a/js/places/place-view.js +++ b/js/places/place-view.js @@ -115,7 +115,7 @@ const Gamepasses = Array.from(GamepassesTab.getElementsByClassName('card')) || [ } } - if (Settings.ReaddCopyableOn === true || 1 === 1) { + if (Settings.ReaddCopyableOn === true) { ReaddCopyable() } });