调整播放失败提示

This commit is contained in:
mtvpls
2026-06-22 11:35:38 +08:00
parent 5bf15e4086
commit 6362c8f251
+2 -2
View File
@@ -8969,9 +8969,9 @@ function PlayPageClient() {
setVideoError('视频无法在浏览器中播放(已尝试代理,格式不兼容)');
} else if (currentSourceRef.current === 'directplay' && !currentUrl.includes('/api/proxy-m3u8')) {
setCorsFailedUrl(currentUrl);
setVideoError('视频播放失败(格式不支持或跨域限制)');
setVideoError('视频播放失败');
} else {
setVideoError('视频播放失败(格式不支持或跨域限制)');
setVideoError('视频播放失败');
}
}
});