diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2021-04-04 13:00:39 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-04 13:00:39 +0900 |
| commit | 7d2126e2b200b8fd1d9e8f2d99ada411ef220ff2 (patch) | |
| tree | 7f227998c5b02a63762517deb14050e10513a38c /src/client/components/post-form.vue | |
| parent | Use mfm-js for MFM parsing (#7415) (diff) | |
| download | misskey-7d2126e2b200b8fd1d9e8f2d99ada411ef220ff2.tar.gz misskey-7d2126e2b200b8fd1d9e8f2d99ada411ef220ff2.tar.bz2 misskey-7d2126e2b200b8fd1d9e8f2d99ada411ef220ff2.zip | |
Fix punycode deprecation warning (#7426)
Diffstat (limited to 'src/client/components/post-form.vue')
| -rw-r--r-- | src/client/components/post-form.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/post-form.vue b/src/client/components/post-form.vue index 13e5c0f433..765824b2ab 100644 --- a/src/client/components/post-form.vue +++ b/src/client/components/post-form.vue @@ -56,7 +56,7 @@ import { faReply, faQuoteRight, faPaperPlane, faTimes, faUpload, faPollH, faGlob import { faEyeSlash, faLaughSquint } from '@fortawesome/free-regular-svg-icons'; import insertTextAtCursor from 'insert-text-at-cursor'; import { length } from 'stringz'; -import { toASCII } from 'punycode'; +import { toASCII } from 'punycode/'; import XNotePreview from './note-preview.vue'; import * as mfm from 'mfm-js'; import { host, url } from '@client/config'; |