Skip to content

Commit

Permalink
fix(features): null reference exception
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhck committed Aug 1, 2020
1 parent a2f0780 commit ded8042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sdk/FeatureContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class FeatureWorker : IFeatureWorker
{
private readonly TimeSpan _syncInterval;
private readonly FeatureManager _manager;
private IEnumerable<RunningFeature> _features;
private IEnumerable<RunningFeature> _features = new List<RunningFeature>();

public FeatureWorker(string endpoint, TimeSpan syncInterval)
{
Expand Down

0 comments on commit ded8042

Please # to comment.