We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d7b87f commit aab3575Copy full SHA for aab3575
Sources/SwiftOCADevice/OCC/PropertyTypes/DeviceProperty.swift
@@ -273,9 +273,10 @@ public struct OcaDeviceProperty<Value: Codable & Sendable>: OcaDevicePropertyRep
273
}
274
set {
275
let property = object[keyPath: storageKeyPath]
276
+ property.subject.send(newValue)
277
278
Task {
- await property.setAndNotifySubscribers(object: object, newValue)
279
+ try? await property.notifySubscribers(object: object, newValue)
280
281
282
0 commit comments