Skip to content

Commit

Permalink
Properties key search made not case sensitive (Fix #5)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmed-shariff committed Nov 16, 2023
1 parent 6c8b036 commit d666686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion org-roam-ql.el
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ If EXACT, test if VALUE and REGEXP are equal strings."
(defun org-roam-ql--predicate-property-match (value prop prop-val)
"Return non-nil if PROP is a key in the alist PROP-VAL.
And its value is a string equal to VALUE."
(-when-let (val (assoc prop value))
(-when-let (val (assoc-string prop value t))
(s-match prop-val (cdr val))))

(defun org-roam-ql--predicate-tags-match (values &rest tags)
Expand Down

0 comments on commit d666686

Please sign in to comment.