We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f1e2e1 commit c43d1b2Copy full SHA for c43d1b2
lib/src/payloads/image_payload.dart
@@ -43,7 +43,7 @@ final class ImagePayload extends Payload {
43
final data = _stripDataPrefix(_location);
44
try {
45
return base64Encode(base64Decode(data)) == data;
46
- } catch (e) {
+ } catch (_) {
47
return false;
48
}
49
lib/src/settings/ray_settings.dart
@@ -68,7 +68,7 @@ final class RaySettings {
68
69
final data = File(configFilePath).readAsStringSync();
70
return jsonDecode(data);
71
72
rethrow;
73
74
0 commit comments