Skip to content

Commit fe4562b

Browse files
committed
Fix RTDB Sream event filter issue
1 parent 1ce2808 commit fe4562b

4 files changed

Lines changed: 3 additions & 6 deletions

File tree

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "FirebaseClient",
3-
"version": "2.2.2",
3+
"version": "2.2.3",
44
"keywords": "communication, REST, esp32, esp8266, arduino",
55
"description": "Async Firebase Client library for Arduino.",
66
"repository": {

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name=FirebaseClient
22

3-
version=2.2.2
3+
version=2.2.3
44

55
author=Mobizt
66

src/core/AsyncClient/SlotManager.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,6 @@ class SlotManager PUBLIC_DATABASE_RESULT_IMPL_BASE
110110

111111
async_data *createSlot(slot_options_t &options)
112112
{
113-
if (!options.auth_used)
114-
sse_events_filter.remove(0, sse_events_filter.length());
115-
116113
int slot_index = availableSlot(options);
117114
// Only one SSE mode is allowed
118115
if (slot_index == -2)

src/core/Core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#undef FIREBASE_CLIENT_VERSION
88
#endif
99

10-
#define FIREBASE_CLIENT_VERSION "2.2.2"
10+
#define FIREBASE_CLIENT_VERSION "2.2.3"
1111

1212
static void sys_idle()
1313
{

0 commit comments

Comments
 (0)