Merge pull request #433 from davidgiven/rawread

Don't crash when trying to read flux from a fl2 file where there isn't any.
This commit is contained in:
David Given
2022-01-26 23:09:48 +01:00
committed by GitHub

View File

@@ -31,7 +31,7 @@ public:
return std::make_unique<Fluxmap>(track.flux());
}
return std::unique_ptr<Fluxmap>();
return std::make_unique<Fluxmap>();
}
void recalibrate() {}