Skip to content

Commit 8d7043c

Browse files
committed
dmFavorites: fix language strings
1 parent 960f214 commit 8d7043c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/dmFavorites/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"$schema": "https://moonlight-mod.github.io/manifest.schema.json",
33
"id": "dmFavorites",
4-
"version": "1.0.4",
4+
"version": "1.0.5",
55
"meta": {
66
"name": "DM Favorites",
77
"tagline": "Implements favorited direct messages from mobile",
88
"authors": ["Cynosphere"],
99
"tags": ["chat", "qol"],
1010
"source": "https://github.com/Cynosphere/moonlight-extensions",
1111
"donate": "https://ko-fi.com/Cynosphere",
12-
"changelog": "Fix broken module dependency that was preventing context menu options from being added"
12+
"changelog": "Fix language strings"
1313
},
1414
"dependencies": ["common", "spacepack", "contextMenu", "componentEditor"],
1515
"apiLevel": 2

src/dmFavorites/webpackModules/context.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function FavoriteDM(props: any) {
1414
const id = props.channel.id;
1515
const override = UserGuildSettingsStore.getChannelOverrides("null")[id] ?? {};
1616
const isFavorite = (override.flags & 2048) !== 0;
17-
const langKey = isFavorite ? "z7I3gY" : "N2c/Ul";
17+
const langKey = isFavorite ? "z7I3gd" : "N2c/Un";
1818

1919
return (
2020
<MenuItem

0 commit comments

Comments
 (0)