Skip to content

Commit f69492b

Browse files
committed
Fix
1 parent 63c3060 commit f69492b

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ The format of this changelog is based on [Keep a Changelog](https://keepachangel
88
* The MINOR component is used whenever a version has backwards-compatible profile changes. This also indicates that the user can not switch back to a previous MINOR version without using a backup.
99
* The PATCH component is used for versions that do not contain profile format changes. Users can freely switch between PATCH versions without risk of data loss.
1010

11+
## [Unreleased]
12+
13+
### Fixed
14+
15+
* Fix Lua error on Classic flavors due to `issecretvalue` missing
16+
1117
## [1.17.2] - 2026-01-23
1218

1319
### Fixed

Clicked/Core/BindingProcessor.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
-- You should have received a copy of the GNU General Public License
1515
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

17+
-- Added in 12.0.0
18+
local issecretvalue = issecretvalue or function(val) return false end
19+
1720
--- @class ClickedInternal
1821
local Addon = select(2, ...)
1922

Clicked/Core/Tooltips.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
-- You should have received a copy of the GNU General Public License
1515
-- along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

17+
-- Added in 12.0.0
18+
local issecretvalue = issecretvalue or function(val) return false end
19+
1720
--- @class ClickedInternal
1821
local Addon = select(2, ...)
1922

0 commit comments

Comments
 (0)