Bitwarden_rs: Server not web vault

This commit is contained in:
Steffen Lange 2021-01-25 23:46:48 +01:00
parent de12497a1e
commit 30bc289ff2

View file

@ -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;
}