Skip to content

Commit

Permalink
Merge branch 'feature/interface-refactor' of github.com:evva-sfw/abre…
Browse files Browse the repository at this point in the history
…vva-capacitor into feature/interface-refactor
  • Loading branch information
mhochsto committed Dec 10, 2024
2 parents 3901092 + d821625 commit b998931
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ios/Plugin/ble/AbrevvaPluginBLE.swift
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,12 @@ public class AbrevvaPluginBLE: CAPPlugin {
self.notifyListeners("onScanResult", data: data)
},
{ error in
call.resolve(["value": error == nil])
self.notifyListeners("onScanStart", data: ["value": error == nil])
call.resolve()
},
{ error in
call.resolve(["value": error == nil])
self.notifyListeners("onScanStop", data: ["value": error == nil])
call.resolve()
},
macFilter,
false,
Expand Down

0 comments on commit b998931

Please sign in to comment.