diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-09-17 21:05:47 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-09-17 21:05:47 +0900 |
| commit | f104e9b6cce012cfcaeba6f75a4990062b03a876 (patch) | |
| tree | 4c87a6774b3850f51998347eedc138f08a99b7f3 /src/client/components | |
| parent | fix(client): Fix #6698 (diff) | |
| download | sharkey-f104e9b6cce012cfcaeba6f75a4990062b03a876.tar.gz sharkey-f104e9b6cce012cfcaeba6f75a4990062b03a876.tar.bz2 sharkey-f104e9b6cce012cfcaeba6f75a4990062b03a876.zip | |
chore: better error text
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/mfm.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/mfm.ts b/src/client/components/mfm.ts index 122368f74b..1dc8780389 100644 --- a/src/client/components/mfm.ts +++ b/src/client/components/mfm.ts @@ -279,7 +279,7 @@ export default Vue.component('misskey-flavored-markdown', { } default: { - console.log('unknown ast type:', token.node.type); + console.log('unrecognized ast type:', token.node.type); return []; } |