Skip to content

Commit 3ca7dfe

Browse files
committed
fixed the unused variable warning
1 parent 758dfc6 commit 3ca7dfe

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docs/releases/2.1.7.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## 2.1.7
22

33
### Fixed
4+
45
- Improved CSS specificity to avoid conflicts with other plugins by adding plugin-specific classes
56
- Fixed UI text to use sentence case as per Obsidian guidelines
67
- Replaced type casting with `requireApiVersion()` for proper API version checking
@@ -13,9 +14,11 @@
1314
- Considered media query alternatives to resize observers for better performance
1415

1516
### Added
17+
1618
- Search functionality to Feed Manager modal with real-time filtering
1719
- Visual differentiation between folder names and feed names with improved hierarchy styling
1820

1921
### Changed
22+
2023
- Removed URL column from Feed Manager modal for cleaner layout
2124
- Enhanced Feed Manager UI with top controls layout (search + add button)

src/services/article-saver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ guid: "{{guid}}"
209209
if (this.app.vault.getAbstractFileByPath(cleanPath) === null) {
210210
await this.app.vault.createFolder(cleanPath);
211211
}
212-
} catch (error) {
212+
} catch {
213213
throw new Error(`Failed to create folder: ${cleanPath}`);
214214
}
215215
}

0 commit comments

Comments
 (0)