Advanced

Change History

New api methods will be announced here. Changes in our data that is relevant to checkers scripts/tags will also be announced here.

Message: Re: Labcaches

Changed By: PattuX
Change Date: March 03, 2020 01:22PM

Re: Labcaches
I'm having trouble with GetFinds. Doing

[code]
local finds = PGC.GetFinds(profileId, { includeLabCaches = true, fields = {'gccode', 'cache_name', 'visitdate','type', 'country'}, order = 'OLDESTFIRST', filter = filter })
[/code]

seems to set finds to true, instead of a table for some reason. I thought the fields/filters might mess it up somehow, and indeed with

[code]
local finds = PGC.GetFinds(profileId, { includeLabs Caches = true })
[/code]

the result is a table at least, however it still does not include Labs.

Original Message

Author: PattuX
Date: March 03, 2020 01:21PM

Re: Labcaches
I'm having trouble with GetFinds. Doing

[code]
local finds = PGC.GetFinds(profileId, { fields = {'gccode', 'cache_name', 'visitdate','type', 'country'}, order = 'OLDESTFIRST', filter = filter })
[/code]

seems to set finds to true, instead of a table for some reason. I thought the fields/filters might mess it up somehow, and indeed with

[code]
local finds = PGC.GetFinds(profileId, { includeLabs = true })
[/code]

the result is a table at least, however it still does not include Labs.