Skip to content

Commit

Permalink
Merge pull request #9 from Woosmap/dev/floatData
Browse files Browse the repository at this point in the history
Parse float data
  • Loading branch information
sameerdhulap authored Nov 27, 2024
2 parents 7bc4de4 + a533e6d commit e816e69
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ios/GeofencingEventsReceiver.swift
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ class GeofencingEventsReceiver: NSObject {
else if let val = eventValue as? Int {
eventAttributes.put(val, forKey: eventKey)
}
else if let val = eventValue as? Float {
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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@woosmap/expo-plugin-geofencing-batch",
"version":"0.2.2",
"version":"0.2.3",
"description": "Woosmap geofencing and batch integration",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion whatsnew.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* bug fixes
* Enhancement: bug fixes

0 comments on commit e816e69

Please sign in to comment.