mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-26 08:56:00 +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
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue