Skip to content

Commit

Permalink
🐛 修复 release 路径错误问题
Browse files Browse the repository at this point in the history
  • Loading branch information
BTMuli committed Oct 18, 2023
1 parent c168a07 commit efec9f7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes
2 changes: 1 addition & 1 deletion src/plugins/Mys/utils/parsePost.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit efec9f7

Please sign in to comment.