diff options
| author | nullobsi <me@nullob.si> | 2021-05-27 17:38:09 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-28 09:38:09 +0900 |
| commit | ffb9646ce9c3d2326a3e922e58702674eb65646c (patch) | |
| tree | bb656e32c4b61313faad218578018a7bcc989e05 /src/remote/activitypub/models | |
| parent | improve types (diff) | |
| download | misskey-ffb9646ce9c3d2326a3e922e58702674eb65646c.tar.gz misskey-ffb9646ce9c3d2326a3e922e58702674eb65646c.tar.bz2 misskey-ffb9646ce9c3d2326a3e922e58702674eb65646c.zip | |
Add image description support (#7518)
* recieve image descriptions under the name property
* fix other components
* use comment for alt and title
* allow editing of file comment
* allow editing of file comment in note dialog
* federate note comments
* use file instead of this
* backend should accept comment on update
* update now actually accepts comment
* allow multiline descriptions
* image should also have description attached
* Update locales/ja-JP.yml
Co-authored-by: rinsuki <428rinsuki+git@gmail.com>
* Use custom component with side-by-side image
* improve usability on mobile devices
* revert changes
* Update post-form-attaches.vue
* Update drive.file.vue
* Update media-caption.vue
Co-authored-by: rinsuki <428rinsuki+git@gmail.com>
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'src/remote/activitypub/models')
| -rw-r--r-- | src/remote/activitypub/models/image.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote/activitypub/models/image.ts b/src/remote/activitypub/models/image.ts index 79fc2bf4a6..7bec1d6030 100644 --- a/src/remote/activitypub/models/image.ts +++ b/src/remote/activitypub/models/image.ts @@ -28,7 +28,7 @@ export async function createImage(actor: IRemoteUser, value: any): Promise<Drive const instance = await fetchMeta(); const cache = instance.cacheRemoteFiles; - let file = await uploadFromUrl(image.url, actor, null, image.url, image.sensitive, false, !cache); + let file = await uploadFromUrl(image.url, actor, null, image.url, image.sensitive, false, !cache, image.name); if (file.isLink) { // URLが異なっている場合、同じ画像が以前に異なるURLで登録されていたということなので、 |