Send out an name change notification if the feed name changes. Fixes #2939
This commit is contained in:
parent
022e4ae153
commit
ce0d5590f1
|
@ -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>? {
|
public var authors: Set<Author>? {
|
||||||
get {
|
get {
|
||||||
|
|
Loading…
Reference in New Issue