Skip to content

Commit

Permalink
Fix "sort unread bookmarks first" and a typo in Settings (#1180)
Browse files Browse the repository at this point in the history
* Fix "sort unread bookmarks first" setting's being ignored

* Vital typo fix
  • Loading branch information
nolanw authored Feb 28, 2024
1 parent 0917fe5 commit a133967
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ final class BookmarksTableViewController: TableViewController {
private var loadMoreFooter: LoadMoreFooter?
private let managedObjectContext: NSManagedObjectContext
@FoilDefaultStorage(Settings.showThreadTags) private var showThreadTags
@FoilDefaultStorage(Settings.forumThreadsSortedUnread) private var sortUnreadToTop
@FoilDefaultStorage(Settings.bookmarksSortedUnread) private var sortUnreadToTop

private lazy var multiplexer: ScrollViewDelegateMultiplexer = {
return ScrollViewDelegateMultiplexer(scrollView: tableView)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"Check Clipboard for URL" : {

},
"Checking the clipboard for a forums URL when you open th eapp allows you to jump straight to a copied URL in Awful." : {
"Checking the clipboard for a forums URL when you open the app allows you to jump straight to a copied URL in Awful." : {

},
"Dark Mode" : {
Expand Down
2 changes: 1 addition & 1 deletion AwfulSettingsUI/Sources/AwfulSettingsUI/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public struct SettingsView: View {
Section {
Toggle("Check Clipboard for URL", bundle: .module, isOn: $checkClipboardForURLOnBecomeActive)
} footer: {
Text("Checking the clipboard for a forums URL when you open th eapp allows you to jump straight to a copied URL in Awful.", bundle: .module)
Text("Checking the clipboard for a forums URL when you open the app allows you to jump straight to a copied URL in Awful.", bundle: .module)
.footer()
}
.section()
Expand Down

0 comments on commit a133967

Please sign in to comment.