Skip to content

Commit

Permalink
parse int data to event
Browse files Browse the repository at this point in the history
  • Loading branch information
sameerdhulap committed Nov 27, 2024
1 parent f607115 commit 4674828
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ios/GeofencingEventsReceiver.swift
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ class GeofencingEventsReceiver: NSObject {
if let val = eventValue as? Double {
eventAttributes.put(val, forKey: eventKey)
}
else if let val = eventValue as? Int {
eventAttributes.put(val, forKey: eventKey)
}
else if let val = eventValue as? Date {
eventAttributes.put(val, forKey: eventKey)
}
Expand Down
2 changes: 1 addition & 1 deletion whatsnew.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* Enhancement: Expo integration for Woosmap geofencing and batch
* bug fixes

0 comments on commit 4674828

Please sign in to comment.