Typo: Instead of the array each item should be checked
This commit is contained in:
parent
63ac08c6a3
commit
a6f9bea939
1 changed files with 1 additions and 1 deletions
|
@ -1312,7 +1312,7 @@ midori_load_extensions (gpointer data)
|
|||
MidoriExtension* extension_item;
|
||||
KATZE_ARRAY_FOREACH_ITEM (extension_item, KATZE_ARRAY (extension))
|
||||
{
|
||||
if (MIDORI_IS_EXTENSION (extension))
|
||||
if (MIDORI_IS_EXTENSION (extension_item))
|
||||
midori_load_extension (app, extensions,
|
||||
active_extensions, extension_item,
|
||||
filename);
|
||||
|
|
Loading…
Reference in a new issue