Skip to content

Commit

Permalink
Merge branch 'feature/offline-cache' of https://github.com/souramoo/a…
Browse files Browse the repository at this point in the history
…dmin-portal into feature/offline-cache
  • Loading branch information
souramoo committed Sep 7, 2024
2 parents 67cfc2b + e93dd47 commit 499c429
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/data/web_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ class WebClient {
print('GET: $url');

final isOnline = await _isOnline();
print("isOnline: $isOnline");

if (isOnline) {
final client = http.Client();
Expand Down Expand Up @@ -102,7 +101,6 @@ class WebClient {
http.Response response;

final isOnline = await _isOnline();
print("isOnline: $isOnline");

if (isOnline) {
if (multipartFiles != null) {
Expand Down Expand Up @@ -167,7 +165,6 @@ class WebClient {
http.Response response;

final isOnline = await _isOnline();
print("isOnline: $isOnline");

if (isOnline) {
if (multipartFile != null) {
Expand Down Expand Up @@ -212,7 +209,6 @@ class WebClient {
print('Delete: $url');

final isOnline = await _isOnline();
print("isOnline: $isOnline");

if (isOnline) {
final client = http.Client();
Expand Down

0 comments on commit 499c429

Please sign in to comment.