Skip to content

Commit 3dd0ffa

Browse files
committed
reduce maxDepth from 100 to 50 to avoid stack overflow error
1 parent 452bbcd commit 3dd0ffa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

LibGetFrame-1.0.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
local MAJOR_VERSION = "LibGetFrame-1.0"
2-
local MINOR_VERSION = 2
2+
local MINOR_VERSION = 3
33
if not LibStub then error(MAJOR_VERSION .. " requires LibStub.") end
44
local lib, oldversion = LibStub:NewLibrary(MAJOR_VERSION, MINOR_VERSION)
55
if not lib then return end
66

7-
local maxDepth = 100
7+
local maxDepth = 50
88

99
local defaultFramePriorities = {
1010
-- raid frames

LibGetFrame-1.0.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## Author: Buds
55
## X-Category: Library
66
## X-License: BSD
7-
## Version: 1.1.0
7+
## Version: 1.1.1
88

99
LibStub\LibStub.lua
1010

0 commit comments

Comments
 (0)