mirror of
https://github.com/yattee/yattee.git
synced 2025-08-07 03:04:03 +00:00
Fix disabling comments
This commit is contained in:
@@ -15,7 +15,7 @@ final class CommentsModel: ObservableObject {
|
||||
var player: PlayerModel!
|
||||
|
||||
static var enabled: Bool {
|
||||
!Defaults[.commentsInstanceID].isNil
|
||||
!Defaults[.commentsInstanceID].isNil && !Defaults[.commentsInstanceID]!.isEmpty
|
||||
}
|
||||
|
||||
var nextPageAvailable: Bool {
|
||||
|
@@ -59,7 +59,7 @@ struct ServicesSettings: View {
|
||||
|
||||
private var commentsInstancePicker: some View {
|
||||
Picker("Comments", selection: $commentsInstanceID) {
|
||||
Text("Disabled").tag(String?.none)
|
||||
Text("Disabled").tag(Optional(""))
|
||||
|
||||
ForEach(InstancesModel.all.filter { $0.app.supportsComments }) { instance in
|
||||
Text(instance.description).tag(Optional(instance.id))
|
||||
|
Reference in New Issue
Block a user