mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-30 11:33:34 +08:00
Fix gitClone exception problem
e.message doesn't exist
This commit is contained in:
@ -379,8 +379,8 @@ class GitHostSetupScreenState extends State<GitHostSetupScreen> {
|
||||
String error;
|
||||
try {
|
||||
await gitClone(_gitCloneUrl, "journal");
|
||||
} catch (e) {
|
||||
error = e.message;
|
||||
} on GitException catch (e) {
|
||||
error = e.cause;
|
||||
}
|
||||
|
||||
if (error != null && error.isNotEmpty) {
|
||||
|
@ -1,6 +1,6 @@
|
||||
name: journal
|
||||
description: A Journaling App Built on top of Git
|
||||
version: 1.1.6+10
|
||||
version: 1.1.7+10
|
||||
|
||||
dependencies:
|
||||
flutter:
|
||||
|
Reference in New Issue
Block a user