Skip to content
Snippets Groups Projects
Commit 32500faf authored by syuilo's avatar syuilo
Browse files

Merge branch 'develop'

parents 1ce8da66 fd5a3048
No related branches found
Tags 12.100.1
No related merge requests found
......@@ -10,6 +10,11 @@
You should also include the user name that made the change.
-->
## 12.106.1 (2022/02/11)
### Bugfixes
- クライアント: ワードミュートが保存できない問題を修正 @syuilo
## 12.106.0 (2022/02/11)
### Improvements
......
{
"name": "misskey",
"version": "12.106.0",
"version": "12.106.1",
"codename": "indigo",
"repository": {
"type": "git",
......
......@@ -102,7 +102,7 @@ export default defineComponent({
let lines = mutes.trim().split('\n').map(line => line.trim()).filter(line => line != '');
// check each line if it is a RegExp or not
for(let i = 0; i < lines.length; i++) {
for (let i = 0; i < lines.length; i++) {
const line = lines[i]
const regexp = line.match(/^\/(.+)\/(.*)$/);
if (regexp) {
......@@ -124,6 +124,8 @@ export default defineComponent({
lines[i] = line.split(' ');
}
}
return lines;
};
let softMutes, hardMutes;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment