File tree 4 files changed +7
-4
lines changed
lib/fl_cloud_storage/vendor/google_drive
4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
- ## 0.0.14
1
+ ## 0.0.15
2
2
3
3
* Login at web should work
4
4
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ packages:
63
63
path: ".."
64
64
relative: true
65
65
source: path
66
- version: "0.0.8 "
66
+ version: "0.0.14 "
67
67
flutter:
68
68
dependency: "direct main"
69
69
description: flutter
Original file line number Diff line number Diff line change @@ -133,6 +133,9 @@ class GoogleDriveService
133
133
return (await googleSignIn.signInSilently (suppressErrors: false )) ??
134
134
(interactiveLogin ? await googleSignIn.signIn () : null );
135
135
} catch (e) {
136
+ if (! interactiveLogin) {
137
+ return googleSignIn.signIn ();
138
+ }
136
139
log.e (e);
137
140
}
138
141
return null ;
@@ -410,4 +413,4 @@ class GoogleDriveService
410
413
? GoogleDriveFolder (folder: res.files! [0 ])
411
414
: null ;
412
415
}
413
- }
416
+ }
Original file line number Diff line number Diff line change 1
1
name : fl_cloud_storage
2
2
description : Store files in the cloud from Flutter apps. In the first step we only support Google Drive but adding other clouds is much appreciated.
3
- version : 0.0.14
3
+ version : 0.0.15
4
4
homepage : https://github.com/ehwplus/fl_cloud_storage
5
5
6
6
environment :
You can’t perform that action at this time.
0 commit comments