Skip to content

Commit a74b778

Browse files
authored
Merge pull request #118 from ben-buckli/feature/add-configureawait-false-to-flags
Add ConfigureAwait(false) to Flags
2 parents e7f6e36 + a2de3f1 commit a74b778

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flagsmith.FlagsmithClient/Flags.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public async Task<IFlag> GetFlag(string featureName)
2929

3030
}
3131
if (_AnalyticsProcessor != null)
32-
await _AnalyticsProcessor.TrackFeature(flag.GetFeatureName());
32+
await _AnalyticsProcessor.TrackFeature(flag.GetFeatureName()).ConfigureAwait(false);
3333
return flag;
3434
}
3535
public List<IFlag> AllFlags() => _Flags;

0 commit comments

Comments
 (0)