Skip to content

Commit d911c6c

Browse files
committed
fix
1 parent ffa11c9 commit d911c6c

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

lib/providers/v2ray_provider.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,9 @@ class V2RayProvider with ChangeNotifier, WidgetsBindingObserver {
10651065
await _v2rayService.saveConfigs(_configs);
10661066
await _v2rayService.saveSubscriptions(_subscriptions);
10671067

1068-
print('Cleared ${subscriptionConfigIds.length} subscription configs for fresh update');
1068+
print(
1069+
'Cleared ${subscriptionConfigIds.length} subscription configs for fresh update',
1070+
);
10691071
}
10701072
} catch (e) {
10711073
print('Error clearing subscription configs: $e');

lib/screens/wallpaper_settings_screen.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,8 @@ class _WallpaperSettingsScreenState extends State<WallpaperSettingsScreen> {
338338
const SizedBox(height: 8),
339339
Text(
340340
context.tr(
341-
TranslationKeys.wallpaperSettingsFailedLoad,
341+
TranslationKeys
342+
.wallpaperSettingsFailedLoad,
342343
),
343344
style: const TextStyle(color: Colors.grey),
344345
),
@@ -552,7 +553,7 @@ class FullScreenWallpaperViewer extends StatelessWidget {
552553
final String imagePath;
553554

554555
const FullScreenWallpaperViewer({Key? key, required this.imagePath})
555-
: super(key: key);
556+
: super(key: key);
556557

557558
@override
558559
Widget build(BuildContext context) {

lib/services/v2ray_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1303,7 +1303,7 @@ class V2RayService extends ChangeNotifier {
13031303
if (_connectedSeconds % 60 == 0) {
13041304
await _saveUsageStats();
13051305
}
1306-
1306+
13071307
// Notify listeners to update UI with new traffic data
13081308
notifyListeners();
13091309
} catch (e) {

0 commit comments

Comments
 (0)