🐛 修复 release 路径错误问题

This commit is contained in:
BTMuli
2023-10-18 23:37:19 +08:00
parent c168a07640
commit efec9f7917
2 changed files with 1 additions and 1 deletions

View File

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -374,7 +374,7 @@ function parseVideo(data: TGApp.Plugins.Mys.Post.StructuredContent): HTMLDivElem
coverDiv.appendChild(cover);
const playIcon = document.createElement("img");
playIcon.classList.add("mys-post-vod-icon");
playIcon.src = "../src/assets/icons/video_play.svg";
playIcon.src = "/source/UI/video_play.svg";
coverDiv.appendChild(playIcon);
const playTime = document.createElement("div");
playTime.classList.add("mys-post-vod-time");