You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: OptimizelySDK/Bucketing/DecisionService.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -568,7 +568,7 @@ public virtual Result<FeatureDecision> GetVariationForFeatureExperiment(FeatureF
568
568
decisionVariation=decisionResponse.ResultObject;
569
569
}
570
570
571
-
if(decisionVariation?.Id!=null)
571
+
if(!string.IsNullOrEmpty(decisionVariation?.Id))
572
572
{
573
573
Logger.Log(LogLevel.INFO,reasons.AddInfo($"The user \"{userId}\" is bucketed into experiment \"{experiment.Key}\" of feature \"{featureFlag.Key}\"."));
0 commit comments