Fix #6513 キャッシュされてないリモートファイルのURLが相対URLで返ってくる (#6514)

This commit is contained in:
MeiMei 2020-07-10 03:52:20 +09:00 committed by GitHub
parent 992ea7a8d2
commit a11f25cf07

View File

@ -39,7 +39,7 @@ export class DriveFileRepository extends Repository<DriveFile> {
const key = thumbnail ? file.thumbnailAccessKey : file.webpublicAccessKey;
if (key && !key.match('/')) { // 古いものはここにオブジェクトストレージキーが入ってるので除外
return `/files/${key}`;
return `${config.url}/files/${key}`;
}
}