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.
2 parents 1532cfe + bd548b0 commit 1a810beCopy full SHA for 1a810be
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