pull plugin manifest file from jsdelivr CDN

This commit is contained in:
Ioannis G 2022-01-11 15:14:11 +02:00
parent d95010697d
commit 4d0c57f52f
No known key found for this signature in database
GPG key ID: EAC0E4E5E36AC49E

View file

@ -1,4 +1,4 @@
using Flow.Launcher.Infrastructure.Logger;
using Flow.Launcher.Infrastructure.Logger;
using System;
using System.Collections.Generic;
using System.Net;
@ -11,7 +11,7 @@ namespace Flow.Launcher.Core.ExternalPlugins
{
public static class PluginsManifest
{
private const string manifestFileUrl = "https://raw.githubusercontent.com/Flow-Launcher/Flow.Launcher.PluginsManifest/plugin_api_v2/plugins.json";
private const string manifestFileUrl = "https://cdn.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@plugin_api_v2/plugins.json";
private static HttpClient httpClient = new HttpClient();