We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
很棒的插件,v1.0.4,先点击侧边栏的主页按钮后,再点击浏览器返回按钮,就一直转圈出不来了。 希望作者修复 emby版本:4.17.13
The text was updated successfully, but these errors were encountered:
经过自己尝试分析,问题出在:
this.initStart = false; setInterval(() => { if (window.location.href.indexOf("!/home") != -1) { if ($(".view:not(.hide) .misty-banner").length == 0 && $(".misty-loading").length == 0) { this.initStart = false; this.initLoading(); } if ($(".hide .misty-banner").length != 0) { $(".hide .misty-banner").remove(); } if (!this.initStart && $(".section0 .card").length != 0 && $(".view:not(.hide) .misty-banner").length == 0) { this.initStart = true; this.init(); } } }, 100); this.currentBannerIndex = 0; this.startAutoBannerRotation(); } static async init() { // Beta $(".view:not(.hide)").attr("data-type", "home"); // Loading const serverName = await this.injectCall("serverName", ""); $(".misty-loading h1").text(serverName).addClass("active"); // Banner await this.initBanner(); this.initEvent(); }
我的临时解决办法:
if ($(".hide .misty-banner").length != 0) { $(".hide .misty-banner").remove(); // this.init(); //如果添加该段,点击返回后媒体库不显示。 window.location.reload(); //只能添加一个刷新网页来临时解决 }
Sorry, something went wrong.
No branches or pull requests
很棒的插件,v1.0.4,先点击侧边栏的主页按钮后,再点击浏览器返回按钮,就一直转圈出不来了。
希望作者修复
emby版本:4.17.13
The text was updated successfully, but these errors were encountered: