Skip to content

Commit

Permalink
Merge pull request #21 from fossapps/fix-unavailable
Browse files Browse the repository at this point in the history
fix(features): null reference exception
  • Loading branch information
cyberhck authored Aug 1, 2020
2 parents a2f0780 + ded8042 commit cac7468
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 cac7468

Please sign in to comment.