Skip to content

Commit

Permalink
Fixed incorrect call to ConfigModule:Get
Browse files Browse the repository at this point in the history
This fixes #77
  • Loading branch information
GurliGebis committed Oct 3, 2024
1 parent 45f1005 commit 28555ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 11.0.2-20241003-1

* Fixed incorrect call to ConfigModule:Get

## 11.0.2-20240912-2

* Raise the width for TagText, provided by siweia on github.
Expand Down
2 changes: 1 addition & 1 deletion Modules/QuestFrame/QuestFrameModule.lua
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ do
end
end

local sortMethod = ConfigModule.Get("sortMethod")
local sortMethod = ConfigModule:Get("sortMethod")
if self.filter == "SORT" then
local title = L["config_sortMethod_"..sortMethod]
if title then text = text..": "..title end
Expand Down

0 comments on commit 28555ff

Please sign in to comment.