mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 14:43:46 +01:00
Merge branch 'develop' into 'develop'
Fixed a small logical mistake in zathura/utils.c See merge request pwmt/zathura!88
This commit is contained in:
commit
fbbfbbd48e
@ -60,7 +60,7 @@ file_valid_extension(zathura_t* zathura, const char* path)
|
||||
zathura_plugin_t* plugin = zathura_plugin_manager_get_plugin(zathura->plugins.manager, content_type);
|
||||
g_free(content_type);
|
||||
|
||||
return plugin == NULL;
|
||||
return plugin != NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user