We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8d6ad3 commit bb6207aCopy full SHA for bb6207a
src/Application.vala
@@ -46,8 +46,8 @@ class NewsApp : Gtk.Application {
46
try {
47
((MainWindow)window).add_feed(Feed.from_file(file));
48
} catch(Error err) {
49
- stderr.puts("Could not open file\n");
50
- ((MainWindow)window).show_error("Could not open file");
+ stderr.puts("Could not open file: " + file.get_basename() + "\n");
+ ((MainWindow)window).show_error("Could not open file: " + file.get_basename());
51
}
52
53
window.present();
0 commit comments