mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-07 20:44:34 +00:00
fix lowecasing of muted instances.
This commit is contained in:
parent
79c4c79386
commit
4234a68b3e
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ const autochange = ref(false);
|
|||
async function save() {
|
||||
let mutes = instanceMutes.value
|
||||
.trim().split('\n')
|
||||
.map(el => el.toLowercase().trim())
|
||||
.map(el => el.toLowerCase().trim())
|
||||
.filter(el => el);
|
||||
|
||||
await misskeyApi('i/update', {
|
||||
|
|
Loading…
Add table
Reference in a new issue