Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ class DepotDownloader @JvmOverloads constructor(

// Non passworded branch, found the manifest
if (node.value != null) {
return node.value!!.toLong()
return node.asUnsignedLong().toLong()
}

// If we requested public branch, and it had no manifest, nothing to do
Expand Down Expand Up @@ -722,7 +722,7 @@ class DepotDownloader @JvmOverloads constructor(
return INVALID_MANIFEST_ID
}

return node.value!!.toLong()
return node.asUnsignedLong().toLong()
}

private fun getSteam3AppBuildNumber(appId: Int, branch: String): Int {
Expand Down