From 257fe0862b1f5c97cf10fa45cd81dfb2ca4a036a Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Sun, 16 May 2021 15:10:57 +0200 Subject: [PATCH] draw.io Desktop: fix json tag --- modules/DrawioDesktop.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/DrawioDesktop.php b/modules/DrawioDesktop.php index 3bdf2ad..7050f07 100644 --- a/modules/DrawioDesktop.php +++ b/modules/DrawioDesktop.php @@ -7,7 +7,7 @@ class DrawioDesktop extends PatchBase { } function check() : bool { if ($this->fetch_json('https://api.github.com/repos/jgraph/drawio-desktop/releases/latest')) - return $this->parse_json('name'); + return $this->parse_json('tag_name'); return false; } }