diff --git a/common/constants.ts b/common/constants.ts index 2d9340f66..8a88ec81f 100644 --- a/common/constants.ts +++ b/common/constants.ts @@ -6,7 +6,7 @@ export const DAY_MS = HOUR_MS * 24; // OAuth constants export const CLIENT_ID = '95109'; -export const PROTOCOL_PREFIX = 'wpcom-local-dev'; +export const PROTOCOL_PREFIX = 'wp-studio'; export const LOCKFILE_NAME = 'appdata-v1.json.lock'; export const LOCKFILE_STALE_TIME = 5000; diff --git a/scripts/package-appx.mjs b/scripts/package-appx.mjs index 497d81e15..1a90b8fef 100644 --- a/scripts/package-appx.mjs +++ b/scripts/package-appx.mjs @@ -67,7 +67,7 @@ async function addProtocolHandlerToManifest( manifestPath ) { const manifestContent = await fs.readFile( manifestPath, 'utf-8' ); // Check if protocol handler already exists - if ( manifestContent.includes( 'wpcom-local-dev' ) ) { + if ( manifestContent.includes( 'wp-studio' ) ) { console.log( '~~~ Protocol handler already exists, skipping...' ); return; } @@ -75,7 +75,7 @@ async function addProtocolHandlerToManifest( manifestPath ) { // Insert the protocol handler extension before const protocolExtension = ` - + WordPress.com Local Dev Protocol