Skip to content

Commit

Permalink
release: 1.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
MliKiowa committed Aug 9, 2024
1 parent 827df80 commit 717b246
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "napcat",
"private": true,
"type": "module",
"version": "1.8.4",
"version": "1.8.5",
"scripts": {
"watch:dev": "vite --mode development",
"watch:prod": "vite --mode production",
Expand Down
12 changes: 7 additions & 5 deletions src/onebot11/constructor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,16 +228,18 @@ export class OB11Constructor {
const videoElement: VideoElement = element.videoElement;
//读取视频链接并兜底
let videoUrl;//Array
let peer:Peer = {
chatType: msg.chatType,
peerUid: msg.peerUid,
guildId: '0'
};
if (msg.peerUin == '284840486') {
peer = msg.parentMsgPeer;
//合并消息内部 应该进行特殊处理 可能需要重写peer 待测试与研究 Mlikiowa Taged TODO
}
try {

videoUrl = await NTQQFileApi.getVideoUrl({
chatType: msg.chatType,
peerUid: msg.peerUid,
guildId: '0'
}, msg.msgId, element.elementId);
videoUrl = await NTQQFileApi.getVideoUrl(peer, msg.msgId, element.elementId);
} catch (error) {
videoUrl = undefined;
}
Expand Down
2 changes: 1 addition & 1 deletion src/onebot11/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '1.8.4';
export const version = '1.8.5';
2 changes: 1 addition & 1 deletion src/webui/ui/NapCat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function onSettingWindowCreated(view: Element) {
SettingItem(
'<span id="napcat-update-title">Napcat</span>',
undefined,
SettingButton('V1.8.4', 'napcat-update-button', 'secondary')
SettingButton('V1.8.5', 'napcat-update-button', 'secondary')
),
]),
SettingList([
Expand Down
2 changes: 1 addition & 1 deletion static/assets/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ async function onSettingWindowCreated(view) {
SettingItem(
'<span id="napcat-update-title">Napcat</span>',
void 0,
SettingButton("V1.8.4", "napcat-update-button", "secondary")
SettingButton("V1.8.5", "napcat-update-button", "secondary")
)
]),
SettingList([
Expand Down

0 comments on commit 717b246

Please sign in to comment.