diff --git a/Frameworks/Account/Feedly/Operations/FeedlyOperation.swift b/Frameworks/Account/Feedly/Operations/FeedlyOperation.swift index 190bc3771..bf5dae694 100644 --- a/Frameworks/Account/Feedly/Operations/FeedlyOperation.swift +++ b/Frameworks/Account/Feedly/Operations/FeedlyOperation.swift @@ -94,19 +94,19 @@ class FeedlyOperation: Operation { let isFinishedDidChange = finished != isFinishedOperation if isFinishedDidChange { - willChangeValue(for: \.isFinished) + willChangeValue(forKey: #keyPath(isFinished)) } if isExecutingDidChange { - willChangeValue(for: \.isExecuting) + willChangeValue(forKey: #keyPath(isExecuting)) } isExecutingOperation = executing isFinishedOperation = finished if isExecutingDidChange { - didChangeValue(for: \.isExecuting) + didChangeValue(forKey: #keyPath(isExecuting)) } if isFinishedDidChange { - didChangeValue(for: \.isFinished) + didChangeValue(forKey: #keyPath(isFinished)) } } }