mirror of
https://github.com/Rafostar/clapper.git
synced 2025-12-24 14:06:26 +01:00
clapper: Mark item title as always parsed
This should be used internally for whether title is still used from parsing, not if parsing was successful. Fixes an issue where in such cases correct title is not updated later on.
This commit is contained in:
@@ -814,7 +814,7 @@ clapper_media_item_constructed (GObject *object)
|
||||
self->uri = g_strdup ("file://");
|
||||
|
||||
self->title = clapper_utils_title_from_uri (self->uri);
|
||||
self->title_is_parsed = (self->title != NULL);
|
||||
self->title_is_parsed = TRUE;
|
||||
|
||||
G_OBJECT_CLASS (parent_class)->constructed (object);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user