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
cond
(path: valueS: let
valueT = attrValueAt T path;
maybeValueT = attrValueAt T path;
in
unwrapSome valueT (_: f valueS))
unwrapSome (_: f valueS) maybeValueT)
S;
# mergeStruct ensures no properties are evaluated (entirely lazy)