Skip to content

Commit 8582a76

Browse files
committed
ignore case
1 parent d054578 commit 8582a76

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Explorer/Assets/DCL/AuthenticationScreenFlow/AuthenticationScreenController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ protected override void OnViewInstantiated()
149149
audio = new AuthenticationScreenAudio(viewInstance, audioMixerVolumesController, backgroundMusic);
150150
characterPreviewController = new AuthenticationScreenCharacterPreviewController(viewInstance!.CharacterPreviewView, emotesSettings, characterPreviewFactory, world, characterPreviewEventBus);
151151

152-
bool isEpicBuild = installSource == EPIC_STORE_INSTALL_SOURCE;
152+
bool isEpicBuild = string.Equals(installSource, EPIC_STORE_INSTALL_SOURCE, StringComparison.OrdinalIgnoreCase);
153153
// Epic builds only support emailOTP due to deeplink limitations
154154
// See: https://github.com/decentraland/unity-explorer/issues/9554
155155
bool enableEmailOTP = FeaturesRegistry.Instance.IsEnabled(FeatureId.EmailOTPAuth) || isEpicBuild;

0 commit comments

Comments
 (0)