Skip to content

Commit

Permalink
Fix nfc menu list of recent nfc files (#996)
Browse files Browse the repository at this point in the history
  • Loading branch information
lijunyu-cn committed Oct 17, 2023
1 parent 63861bf commit 9ec50b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1751,7 +1751,7 @@ void MainWindow::UpdateNFCMenu()
if (entry.empty())
continue;

if (!fs::exists(entry))
if (!fs::exists(_utf8ToPath(entry)))
continue;

if (recentFileIndex == 0)
Expand Down

0 comments on commit 9ec50b8

Please sign in to comment.