perf: 更换下载 emoji

This commit is contained in:
Clansty 2022-03-17 10:48:55 +08:00
parent b7e058062d
commit 543af1e63a
No known key found for this signature in database
GPG Key ID: 3A6BE8BAF2EDE134
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ export default class FileAndFlashPhotoController {
const downloadUrl = await this.oicq.getChat(Number(fileInfo.roomId)).getFileUrl(fileInfo.fileId);
await message.reply({
message: fileInfo.info,
buttons: Button.url('下载', downloadUrl),
buttons: Button.url('📎下载', downloadUrl),
});
}
catch (e) {

View File

@ -112,7 +112,7 @@ export default class ForwardService {
const dbEntry = await db.file.create({
data: { fileId: elem.fid, roomId: pair.qqRoomId, info: message },
});
button = Button.url('获取下载地址',
button = Button.url('📎获取下载地址',
`https://t.me/${this.tgBot.me.username}?start=file-${dbEntry.id}`);
}
break;