fix: bad unwrapSome usage

This commit is contained in:
Emile Clark-Boman 2025-12-15 00:24:18 +10:00
parent 5da4058650
commit 5c593f6743

View file

@ -68,9 +68,9 @@ in rec {
mapAttrsRecursiveCond mapAttrsRecursiveCond
cond cond
(path: valueS: let (path: valueS: let
valueT = attrValueAt T path; maybeValueT = attrValueAt T path;
in in
unwrapSome valueT (_: f valueS)) unwrapSome (_: f valueS) maybeValueT)
S; S;
# mergeStruct ensures no properties are evaluated (entirely lazy) # mergeStruct ensures no properties are evaluated (entirely lazy)