Due to changes on the Geocaching website, iterating my_logs() raises an exception due to a missing query argument "guid". This is caused by an upstream change at https://www.geocaching.com/my/logs.aspx, where the format of the URL that this library uses was changed to "https://www.geocaching.com/geocache/[WP]".
This PR modifies the my_logs() method to use WP to find the geocache details instead of guid, which fixes the problem.
Due to changes on the Geocaching website, iterating
my_logs()
raises an exception due to a missing query argument "guid". This is caused by an upstream change at https://www.geocaching.com/my/logs.aspx, where the format of the URL that this library uses was changed to "https://www.geocaching.com/geocache/[WP]".This PR modifies the
my_logs()
method to use WP to find the geocache details instead of guid, which fixes the problem.