From 6b60329f9cc5664697360feee4cda3fe3b9d8b6d Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Thu, 22 Feb 2024 13:15:47 -0500 Subject: [PATCH] only check for is_atomic constant not concerned with the atomic_client_id as of yet --- bootstrap.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/bootstrap.php b/bootstrap.php index b3f8edb..e29e368 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -27,12 +27,7 @@ function () { function () { // set platform $platform = 'default'; - if ( - defined( 'IS_ATOMIC' ) && - IS_ATOMIC && - defined( 'ATOMIC_CLIENT_ID' ) && - '2' === ATOMIC_CLIENT_ID - ) { + if ( defined( 'IS_ATOMIC' ) && IS_ATOMIC ) { $platform = 'atomic'; } setContext( 'platform', $platform );