mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-12-01 18:27:29 +00:00
c1514ce91d
Fix #13290
9 lines
267 B
TypeScript
9 lines
267 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export function checkHttps(url: string): boolean {
|
|
return url.startsWith('https://') ||
|
|
(url.startsWith('http://') && process.env.NODE_ENV !== 'production');
|
|
}
|