Skip to content

Commit

Permalink
Fixed display error within group finder
Browse files Browse the repository at this point in the history
  • Loading branch information
Jens N committed Apr 2, 2023
1 parent c366a70 commit bd72a5e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions LogTracker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -755,14 +755,6 @@ function LogTracker:OnPlayerEnteringWorld()
if TacoTipConfig and not TacoTipConfig.show_guild_name then
print(self:GetColoredText("error", L["TACOTIP_GUILD_NAME_WARNING"]));
end
-- Hook into Group finder frame
LogTracker:InitLogsFrame();
-- Hook into Group finder tooltip
if LFGBrowseSearchEntryTooltip then
hooksecurefunc("LFGBrowseSearchEntryTooltip_UpdateAndShow", function(tooltip, ...)
LogTracker:OnTooltipShow(tooltip, ...);
end);
end
-- Update self
self:CompareAchievements("player", 30);
-- Greet peers
Expand Down Expand Up @@ -830,6 +822,14 @@ function LogTracker:OnAddonLoaded(addonName)
self:CleanupPeerData();
-- Import app data
self:ImportAppData();
-- Hook into Group finder frame
LogTracker:InitLogsFrame();
-- Hook into Group finder tooltip
if LFGBrowseSearchEntryTooltip then
hooksecurefunc("LFGBrowseSearchEntryTooltip_UpdateAndShow", function(tooltip, ...)
LogTracker:OnTooltipShow(tooltip, ...);
end);
end
end

function LogTracker:OnCommMessage(prefix, message, distribution, sender)
Expand Down
2 changes: 1 addition & 1 deletion LogTracker.toc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Interface-BCC: 20504
## Interface-Wrath: 30400
## Title: LogTracker
## Version: 1.6.0
## Version: 1.6.1
## Author: Mylaerla-Everlook
## SavedVariables: LogTrackerDB
## Notes: Track players logs ingame via tooltip/who
Expand Down

0 comments on commit bd72a5e

Please sign in to comment.