Send out an name change notification if the feed name changes. Fixes #2939
This commit is contained in:
parent
f9bc973361
commit
bfb6b3719e
|
@ -77,7 +77,13 @@ public final class WebFeed: Feed, Renamable, Hashable {
|
|||
}
|
||||
}
|
||||
|
||||
public var name: String?
|
||||
public var name: String? {
|
||||
didSet {
|
||||
if name != oldValue {
|
||||
postDisplayNameDidChangeNotification()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public var authors: Set<Author>? {
|
||||
get {
|
||||
|
|
Loading…
Reference in New Issue