summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plparse/totem-pl-parser.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/plparse/totem-pl-parser.c b/plparse/totem-pl-parser.c
index bfc9a7f..8fb0eab 100644
--- a/plparse/totem-pl-parser.c
+++ b/plparse/totem-pl-parser.c
@@ -1813,7 +1813,8 @@ totem_pl_parser_parse_internal (TotemPlParser *parser,
uri = g_file_get_uri (file);
/* Should we try to parse it with quvi? */
- if (g_file_has_uri_scheme (file, "http")) {
+ if (g_file_has_uri_scheme (file, "http") ||
+ g_file_has_uri_scheme (file, "https")) {
if (uri != NULL && totem_pl_parser_is_videosite (uri, parser->priv->debug) != FALSE) {
ret = totem_pl_parser_add_videosite (parser, file, base_file, parse_data, NULL);
if (ret == TOTEM_PL_PARSER_RESULT_SUCCESS)