Skip to content

Commit

Permalink
Fix ??
Browse files Browse the repository at this point in the history
  • Loading branch information
ComputerElite committed Apr 19, 2024
1 parent 3dc4a3b commit 962ab20
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
Binary file modified DiffCreator/bin/Release/net6.0/DiffCreator.dll
Binary file not shown.
Binary file modified DiffCreator/bin/Release/net6.0/DiffCreator.pdb
Binary file not shown.
Binary file modified DiffCreator/obj/Release/net6.0/DiffCreator.dll
Binary file not shown.
Binary file modified DiffCreator/obj/Release/net6.0/DiffCreator.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion DiffCreator/obj/rider.project.model.nuget.info
Original file line number Diff line number Diff line change
@@ -1 +1 @@
17131034326148362
17131034345636034
2 changes: 1 addition & 1 deletion QuestAppVersionSwitcher/Assets/html/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ document.getElementById("logintoken").onclick = () => {

function UpdateVersion(version) {
currentGameVersion = version
document.getElementById("currentVersion").innerText = currentGameVersion ?? "Version unknown"
document.getElementById("currentVersion").innerText = currentGameVersion ? currentGameVersion : "Version unknown"
}

var isGamePatched = false
Expand Down

0 comments on commit 962ab20

Please sign in to comment.