Refactor
This commit is contained in:
		| @@ -20,7 +20,7 @@ export default function(me, settings, note) { | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	if (!isMyNote && note.text && settings.mutedWords.some(q => q.length > 0 && !q.some(word => word == '' || !note.text.includes(word)))) { | ||||
| 	if (!isMyNote && note.text && settings.mutedWords.some(q => q.length > 0 && !q.some(word => !note.text.includes(word)))) { | ||||
| 		return true; | ||||
| 	} | ||||
|  | ||||
|   | ||||
| @@ -72,7 +72,7 @@ export default Vue.extend({ | ||||
|  | ||||
| 	methods: { | ||||
| 		save() { | ||||
| 			this._mutedWords = this.mutedWords.split('\n').map(line => line.split(' ')); | ||||
| 			this._mutedWords = this.mutedWords.split('\n').map(line => line.split(' ').filter(x => x != '')); | ||||
| 		} | ||||
| 	} | ||||
| }); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 syuilo
					syuilo