Skip to content

0.0.16

Compare
Choose a tag to compare
@QartemisT QartemisT released this 04 May 14:15
· 8 commits to main since this release
50fee44

WagoAnalytics

0.0.16 (2023-05-04)

Full Changelog Previous Releases

  • Avoid errors when querying unknown addons (#34)
    Patch 10.1 applied an extra subtle change to C_AddOns.GetAddOnMetadata

    that results in it now erroring if the supplied addon name does not

    exist.

    If the analytics error handler fails to extract an addon name from the

    error message it ends up passing "Unknown" as the addon name, which

    is almost always never going to be an installed addon - and as such

    will raise an error.

    This can be trivially tested from the chat frame via the following,

    which will result in two errors - one for the call we're making

    ourselves, and one from within analytics directly.

      /run C\_AddOns.GetAddOnMetadata("oops")
    

    Wrapping things up with a protected call barrier resolves this issue.