We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1532cfe commit bd548b0Copy full SHA for bd548b0
PowerSession.Main/Commands/RecordSession.cs
@@ -47,7 +47,7 @@ internal IEnumerable<SessionLine> Lines()
47
if (lineData.Count != 3) throw new InvalidDataException("Invalid record data");
48
var rv = new SessionLine
49
{
50
- Timestamp = (double) lineData[0],
+ Timestamp = Convert.ToDouble(lineData[0]),
51
Stdout = (string) lineData[1] == "o",
52
Content = (string) lineData[2]
53
};
0 commit comments