Skip to content

Commit 9f14fdf

Browse files
committed
Fix recursion error on ignore operator
1 parent 47daf86 commit 9f14fdf

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog #
22

3+
## Version 2.2 ##
4+
5+
- Fix recursion error on ignore operator
6+
37
## Version 2.1 ##
48

59
- Make seed optional for `reduce`

src/beicon/v2.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@
559559
"Ignores all elements in an observable sequence leaving only the
560560
termination messages."
561561
[ob]
562-
(pipe (ignore) ob))
562+
(pipe (ops/ignore) ob))
563563

564564
(defn finalize
565565
"Returns an Observable that mirrors the source Observable, but will

0 commit comments

Comments
 (0)