From 30bc289ff2ed8dade8d02b3f0a4024a563ed11e4 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Mon, 25 Jan 2021 23:46:48 +0100 Subject: [PATCH] Bitwarden_rs: Server not web vault --- modules/Bitwarden_rs.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/Bitwarden_rs.php b/modules/Bitwarden_rs.php index 2f966fd..6d82825 100644 --- a/modules/Bitwarden_rs.php +++ b/modules/Bitwarden_rs.php @@ -2,11 +2,10 @@ class Bitwarden_rs extends PatchBase { function __construct() { - parent::__construct('Daniel García', 'Bitwarden in Rust', 'https://github.com/dani-garcia/bw_web_builds'); - $this->patch->setBranch('Web Vault'); + parent::__construct('Daniel García', 'Bitwarden in Rust', 'https://github.com/dani-garcia/bitwarden_rs'); } function check() : bool { - if ($this->fetch('https://api.github.com/repos/dani-garcia/bw_web_builds/releases/latest', true)) + if ($this->fetch('https://api.github.com/repos/dani-garcia/bitwarden_rs/releases/latest', true)) return $this->parse_json('tag_name'); return false; }