mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-18 13:23:28 -05:00
NoAppsAllowed Fix
This commit is contained in:
parent
f9d908a4f0
commit
225c99ad4c
3 changed files with 6 additions and 6 deletions
|
@ -14,10 +14,10 @@ export default definePlugin({
|
|||
|
||||
patches: [
|
||||
{
|
||||
find: "#{intl::APP_TAG})",
|
||||
find: "#{intl::APP_TAG::hash}\":",
|
||||
replacement: {
|
||||
match: /\i\.\i\.string\(\i\.\i#{intl::APP_TAG}\)/,
|
||||
replace: '"BOT"'
|
||||
match: /(#{intl::APP_TAG::hash}"):".*?"/,
|
||||
replace: '$1:"BOT"'
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import { definePluginSettings, Settings } from "@api/Settings";
|
||||
import { definePluginSettings } from "@api/Settings";
|
||||
import { Flex } from "@components/Flex";
|
||||
import { Devs } from "@utils/constants";
|
||||
import { getIntlMessage } from "@utils/discord";
|
||||
|
@ -301,7 +301,6 @@ export default definePlugin({
|
|||
const [tagName, variant] = passedTagName.split("-");
|
||||
if (!passedTagName) return getIntlMessage("APP_TAG");
|
||||
const tag = tags.find(({ name }) => tagName === name);
|
||||
if (!tag && Settings.plugins.NoAppsAllowed.enabled) return "BOT";
|
||||
if (!tag) return getIntlMessage("APP_TAG");
|
||||
if (variant === "BOT" && tagName !== "WEBHOOK" && this.settings.store.dontShowForBots) return getIntlMessage("APP_TAG");
|
||||
|
||||
|
@ -310,7 +309,6 @@ export default definePlugin({
|
|||
case "OP":
|
||||
return `${getIntlMessage("BOT_TAG_FORUM_ORIGINAL_POSTER")} • ${tagText}`;
|
||||
case "BOT":
|
||||
if (Settings.plugins.NoAppsAllowed.enabled) return `BOT • ${tagText}`;
|
||||
return `${getIntlMessage("APP_TAG")} • ${tagText}`;
|
||||
default:
|
||||
return tagText;
|
||||
|
|
|
@ -27,6 +27,8 @@ export function canonicalizeMatch<T extends RegExp | string>(match: T): T {
|
|||
const isString = typeof match === "string";
|
||||
const hasSpecialChars = !Number.isNaN(Number(hashed[0])) || hashed.includes("+") || hashed.includes("/");
|
||||
|
||||
if (modifier === "hash") return hashed;
|
||||
|
||||
if (hasSpecialChars) {
|
||||
return isString
|
||||
? `["${hashed}"]`
|
||||
|
|
Loading…
Reference in a new issue