提交 d7ba1b13 authored 作者: shixiaochen's avatar shixiaochen

1、拦截无升级任务

上级 542183f9
...@@ -62,6 +62,10 @@ void checkVersion({ ...@@ -62,6 +62,10 @@ void checkVersion({
ToastUtil.showToast("当前已经是最新版本"); ToastUtil.showToast("当前已经是最新版本");
return; return;
} }
if (result == null) {
// 无升级任务,拦截
return;
}
// 升级弹框提示 // 升级弹框提示
Get.dialog( Get.dialog(
UpdateDialog( UpdateDialog(
...@@ -75,7 +79,8 @@ void checkVersion({ ...@@ -75,7 +79,8 @@ void checkVersion({
), ),
); );
} on DioException catch (e) { } on DioException catch (e) {
debugPrint("===== 网络请求错误:${e.response?.statusCode} ${e.response?.statusMessage}"); debugPrint(
"===== 网络请求错误:${e.response?.statusCode} ${e.response?.statusMessage}");
} }
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论