fix: sys msg: push video

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-04-05 11:49:50 +08:00
parent f522ecd42d
commit 78d13b586a

View File

@@ -188,7 +188,10 @@ class _SysMsgPageState extends State<SysMsgPage> {
recognizer: TapGestureRecognizer() recognizer: TapGestureRecognizer()
..onTap = () { ..onTap = () {
try { try {
PiliScheme.routePushFromUrl(match[3]!); PiliScheme.videoPush(
isBV ? null : int.parse(match[3]!),
isBV ? match[3]! : null,
);
} catch (err) { } catch (err) {
SmartDialog.showToast(err.toString()); SmartDialog.showToast(err.toString());
} }