mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-27 06:33:08 +02: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');
|
|
}
|