Thread: 2.3 Update
View Single Post
02/04/16, 06:53 AM   #25
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 1,578
A little shim for anyone who wants to use GetAPIVersion() until it is fixed:
Lua Code:
  1. if(GetAPIVersion() == 100013 and ACTIVITY_TRACKER ~= nil) then
  2.     function GetAPIVersion() return 100014 end
  3. end
It won't help with the meta file variable replacement, but at least GetAPIVersion is usable with it.
  Reply With Quote