Fixed merging-error

Removed `.url` from `private static readonly string[] Extensions`
This commit is contained in:
Leon Pascal Thierschmidt
2020-05-02 16:18:15 +02:00
parent 94724104b3
commit 25e6d6b9cb

View File

@@ -1,4 +1,4 @@
// Copyright © 2017 Paddy Xu
// Copyright © 2017 Paddy Xu
//
// This file is part of QuickLook program.
//
@@ -26,7 +26,7 @@ namespace QuickLook.Plugin.HtmlViewer
{
public class Plugin : IViewer
{
private static readonly string[] Extensions = { ".mht", ".mhtml", ".htm", ".html", ".url" };
private static readonly string[] Extensions = { ".mht", ".mhtml", ".htm", ".html" };
private static readonly string[] SupportedProtocols = { "http", "https" };
private WebpagePanel _panel;