Merge branch 'fix'

This commit is contained in:
guozhigq
2024-09-29 14:09:24 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ class _StyleSettingState extends State<StyleSetting> {
needReboot: true,
),
const SetSwitchItem(
title: '首页底栏背景渐变',
title: '首页顶部背景渐变',
setKey: SettingBoxKey.enableGradientBg,
defaultVal: true,
needReboot: true,

View File

@ -95,6 +95,6 @@ class WebviewController extends GetxController {
},
),
)
..loadRequest(Uri.parse(url));
..loadRequest(Uri.parse(url.startsWith('http') ? url : 'https://$url'));
}
}