Fix GithubRepos Button Setting Context
Some checks are pending
Test / Test (push) Waiting to run

This commit is contained in:
thororen1234 2025-05-31 12:07:51 -04:00
parent 98d9075639
commit dc24a32d6a
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View file

@ -236,7 +236,7 @@ export function migratePluginSettings(name: string, ...oldNames: string[]) {
}
}
export function migratePluginSetting(pluginName: string, oldSetting: string, newSetting: string) {
export function migratePluginSetting(pluginName: string, newSetting: string, oldSetting: string) {
const settings = SettingsStore.plain.plugins[pluginName];
if (!settings) return;

View file

@ -30,7 +30,7 @@ export const settings = definePluginSettings({
},
showInMiniProfile: {
type: OptionType.BOOLEAN,
description: "Only show a button in the mini profile",
description: "Show full ui in the mini profile instead of just a button",
default: true
},
});

View file

@ -33,7 +33,7 @@ interface MessageDeleteProps {
}
// Remove this migration once enough time has passed
migratePluginSetting("NoBlockedMessages", "ignoreBlockedMessages", "ignoreMessages");
migratePluginSetting("NoBlockedMessages", "ignoreMessages", "ignoreBlockedMessages");
const settings = definePluginSettings({
ignoreMessages: {
description: "Completely ignores incoming messages from blocked and ignored (if enabled) users",

View file

@ -201,7 +201,7 @@ function toggleMessageDecorators(enabled: boolean) {
}
}
migratePluginSetting("PlatformIndicators", "badges", "profiles");
migratePluginSetting("PlatformIndicators", "profiles", "badges");
const settings = definePluginSettings({
list: {
type: OptionType.BOOLEAN,