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 9ec48cd commit 232a30aCopy full SHA for 232a30a
source/gameanalytics/GAState.cpp
@@ -598,7 +598,7 @@ namespace gameanalytics
598
std::string cachedLastSessionTime = utilities::getOptionalValue<std::string>(state_dict, "last_session_time", "0");
599
std::string cachedTotalSessionTime = utilities::getOptionalValue<std::string>(state_dict, "total_session_time", "0");
600
601
- _lastSessionTime = std::stoull(cachedTotalSessionTime);
+ _lastSessionTime = std::stoull(cachedLastSessionTime);
602
_totalElapsedSessionTime = std::stoull(cachedTotalSessionTime);
603
}
604
catch(const std::exception& e)
0 commit comments