mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-02 18:18:39 +00:00
Add logging to npTicket reading if platform/gameVersion could not be determined
This commit is contained in:
parent
e1bad4ead3
commit
480fb4b040
1 changed files with 7 additions and 1 deletions
|
@ -111,7 +111,13 @@ public class NPTicket
|
||||||
|
|
||||||
if (npTicket.Platform == Platform.Unknown)
|
if (npTicket.Platform == Platform.Unknown)
|
||||||
{
|
{
|
||||||
Logger.Log($"", LoggerLevelLogin.Instance);
|
Logger.Log($"Could not determine platform from IssuerId {npTicket.IssuerId} decimal", LoggerLevelLogin.Instance);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (npTicket.GameVersion == GameVersion.Unknown)
|
||||||
|
{
|
||||||
|
Logger.Log($"Could not determine game version from title id {titleId}", LoggerLevelLogin.Instance);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue