mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-20 23:22:07 +00:00
Complete issue verification analysis and fix print statements
Co-authored-by: kodjodevf <107993382+kodjodevf@users.noreply.github.com>
This commit is contained in:
parent
adfa6249f0
commit
8e741ab698
1 changed files with 5 additions and 5 deletions
|
|
@ -153,7 +153,7 @@ class CustomExtendedNetworkImageProvider
|
|||
}
|
||||
} catch (e) {
|
||||
if (kDebugMode) {
|
||||
print(e);
|
||||
debugPrint(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -166,7 +166,7 @@ class CustomExtendedNetworkImageProvider
|
|||
}
|
||||
} catch (e) {
|
||||
if (kDebugMode) {
|
||||
print(e);
|
||||
debugPrint(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -249,7 +249,7 @@ class CustomExtendedNetworkImageProvider
|
|||
);
|
||||
} catch (e) {
|
||||
if (kDebugMode) {
|
||||
print(e);
|
||||
debugPrint(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -266,12 +266,12 @@ class CustomExtendedNetworkImageProvider
|
|||
return Uint8List.fromList(bytes);
|
||||
} on OperationCanceledError catch (_) {
|
||||
if (kDebugMode) {
|
||||
print('User cancel request $url.');
|
||||
debugPrint('User cancel request $url.');
|
||||
}
|
||||
return Future<Uint8List>.error(StateError('User cancel request $url.'));
|
||||
} catch (e) {
|
||||
if (kDebugMode) {
|
||||
print(e);
|
||||
debugPrint(e);
|
||||
}
|
||||
} finally {
|
||||
await chunkEvents?.close();
|
||||
|
|
|
|||
Loading…
Reference in a new issue