CurseProxy
CurseProxy copied to clipboard
No Fabric mods added or changed since 2021-06-21.
The query
{
addons(gameId: 432, category: "Fabric") {
id
dateModified
}
}
returns a list of 2998 mods, none of which have modifications after 2021-06-21.
Further testing indicates that this affects all mods, not just Fabric mods.
I can confirm the dateModified
field is stale, and recently created mods have no data at all. But strangely the files
field of older mods is up to date. For example:
{
addons(gameId: 432, section: "Mods", idList: [317780]){
dateModified
files {
id
fileDate
}
}
}
the modification date is outdated
"dateModified" : "2021-05-24T13:54:55",
but the file list is up to date, with the latest file appearing:
}, {
"id" : 3408554,
"fileDate" : "2021-08-01T13:16:04"
}, {
Additionally, the HTTP API is still up to date, this issue only exists in GraphQL. For example this 1 week old mod is fine with HTTP: https://curse.nikky.moe/api/addon/509019 but GraphQL returns an empty result.