Skip to content

Commit

Permalink
Merge branch 'custom-ranges-fix' of https://github.com/robertbasti/wi…
Browse files Browse the repository at this point in the history
…tsml-explorer into custom-ranges-fix
  • Loading branch information
robertbasti committed Jan 31, 2025
2 parents aff7490 + c9b5acb commit e93a014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/Witsml/Data/Curves/Point.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public Point(string commaSeparated)
? witsmlDateTime
: new DepthIndex(double.Parse(values.First(), CultureInfo.InvariantCulture));

Value = CurveValue.From(values[1]);
Value = CurveValue.From(values.Length > 1 ? values[1] : null);
}

public string GetValueAsString()
Expand Down

0 comments on commit e93a014

Please sign in to comment.