You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Properly return an error instead of failing silently when we cannot write without response to a characteristic that doesnt support write without response
// Return an empty publisher here, since we never expect to receive a response when writing using a .withoutResponse type. This will ignore errors we might get, but that will be resolved in a later version.
121
-
returnEmpty()
120
+
if characteristic.properties.contains(.writeWithoutResponse){
121
+
// Return an empty publisher here, since we never expect to receive a response.
0 commit comments