Plugin entries were not syncing properly inside the plugins view. Instead of adding events to update filtered lists, make it so that these filtered lists are updated on state changes. This is the intended method of reactive programming and removes complexity from filtering logic. Signed-off-by: kingbri <bdashore3@proton.me>
14 lines
248 B
Swift
14 lines
248 B
Swift
//
|
|
// NotificationCenter.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 9/3/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Notification.Name {
|
|
static var didDeleteBookmark: Notification.Name {
|
|
Notification.Name("Deleted bookmark")
|
|
}
|
|
}
|