2023-07-27 07:31:52 +02:00
|
|
|
/*
|
2024-02-13 16:50:11 +01:00
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
2023-07-27 07:31:52 +02:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-07-13 11:11:54 +02:00
|
|
|
export function safeURIDecode(str: string): string {
|
|
|
|
try {
|
|
|
|
return decodeURIComponent(str);
|
|
|
|
} catch {
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
}
|