Content store: Ignore '_game' in game names in ID generation (#8270)

Fixes 'install' button continuing to be displayed after installing a game whose
name ends with '_game'.
This commit is contained in:
rubenwardy 2019-02-22 03:19:52 +00:00 committed by Paramat
parent 0ad96cc73f
commit 85389ad994
1 changed files with 6 additions and 1 deletions

View File

@ -297,7 +297,12 @@ function store.load()
package.author .. "/" .. package.name ..
"/releases/" .. package.release .. "/download/"
package.id = package.author .. "/" .. package.name
local name_len = #package.name
if package.type == "game" and name_len > 5 and package.name:sub(name_len - 4) == "_game" then
package.id = package.author .. "/" .. package.name:sub(1, name_len - 5)
else
package.id = package.author .. "/" .. package.name
end
end
store.packages = store.packages_full