We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f90059 commit fec269bCopy full SHA for fec269b
lib/visitor.dart
@@ -329,11 +329,11 @@ class Visitor with EmotionAiDelegate {
329
if (idToLookup != null) {
330
await _visitorDelegate
331
.lookupVisitor(idToLookup)
332
- .then((isLoadedFromCache) => {
+ .then((isLoadedFromCache) {
333
this._fetchReasons = isLoadedFromCache
334
? FetchFlagsRequiredStatusReason.FLAGS_FETCHED_FROM_CACHE
335
- : FetchFlagsRequiredStatusReason.FLAGS_NEVER_FETCHED,
336
- this._needLookupVisitor = false
+ : FetchFlagsRequiredStatusReason.FLAGS_NEVER_FETCHED;
+ this._needLookupVisitor = false;
337
});
338
} else {
339
// No existing visitor found, set appropriate fetch reason
0 commit comments