Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Memri
consumer_app
Merge requests
!64
make null checkability for variable
Code
Review changes
Check out branch
Download
Email patches
Plain diff
Merged
Szymon Zimnowoda
requested to merge
sz/dont_crash_the_app
into
dev
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
0
0
Compare
dev
dev (base)
and
latest version
latest version
8ec6a879
1 commit,
2 years ago
1 file
+
1
-
1
Expand all files
Preferences
Preferences
File browser
List view
Tree view
Compare changes
Inline
Side-by-side
Show whitespace changes
Show one file at a time
lib/providers/app_provider.dart
+
1
-
1
Options
View file @ 8ec6a879
Edit in single-file editor
Open in Web IDE
Show full file
@@ -477,7 +477,7 @@ class AppProvider with ChangeNotifier {
_pluginRunProgress
=
pluginItem
?.
get
(
'progress'
)
??
0
;
if
(
pluginItem
!=
null
)
{
_importerId
=
pluginItem
.
id
;
ready
=
_pluginRunProgress
!
>
=
1.0
;
ready
=
(
_pluginRunProgress
??
0
)
>
=
1.0
;
}
AppLogger
.
debug
(
'Plugin progress:
$_pluginRunProgress
'
);
Menu
Explore
Projects
Groups
Snippets