Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Feb 11, 2022
2 parents 1ce8da6 + fd5a304 commit 32500fa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "12.106.0",
"version": "12.106.1",
"codename": "indigo",
"repository": {
"type": "git",
Expand Down
4 changes: 3 additions & 1 deletion packages/client/src/pages/settings/word-mute.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -124,6 +124,8 @@ export default defineComponent({
lines[i] = line.split(' ');
}
}
return lines;
};
let softMutes, hardMutes;
Expand Down

0 comments on commit 32500fa

Please sign in to comment.