mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 16:20:03 +00:00
Finish implementing IGDB plugin
Updated Plugin API Updated Steam plugin Other minor improvements
This commit is contained in:
@@ -112,14 +112,15 @@ class SteamPlugin(wrapper: PluginWrapper) : GameyfinPlugin(wrapper) {
|
||||
release = date(game["release_date"]?.jsonObject["date"]?.jsonPrimitive?.content!!),
|
||||
userRating = 0,
|
||||
criticRating = 0,
|
||||
developedBy = stringList(game, "developers"),
|
||||
publishedBy = stringList(game, "publishers"),
|
||||
genres = emptyList(),
|
||||
themes = emptyList(),
|
||||
screenshotUrls = emptyList(),
|
||||
videoUrls = emptyList(),
|
||||
features = emptyList(),
|
||||
perspectives = emptyList()
|
||||
developedBy = stringList(game, "developers").toSet(),
|
||||
publishedBy = stringList(game, "publishers").toSet(),
|
||||
genres = emptySet(),
|
||||
themes = emptySet(),
|
||||
keywords = emptySet(),
|
||||
screenshotUrls = emptySet(),
|
||||
videoUrls = emptySet(),
|
||||
features = emptySet(),
|
||||
perspectives = emptySet()
|
||||
)
|
||||
|
||||
return metadata
|
||||
|
||||
Reference in New Issue
Block a user