From 0ebe8b9e827a3389f910b236bac0e85632604260 Mon Sep 17 00:00:00 2001 From: Paul Lietar Date: Mon, 28 Dec 2015 01:40:54 +0100 Subject: [PATCH] Fox subscription URL for spirc. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For some reason the old URL doesn’t work in new clients. Can’t remember where it came from. --- src/spirc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spirc.rs b/src/spirc.rs index 91b0d06c..cd2b90d0 100644 --- a/src/spirc.rs +++ b/src/spirc.rs @@ -91,7 +91,7 @@ impl <'s, D: SpircDelegate> SpircManager<'s, D> { } pub fn run(&mut self) { - let rx = self.session.mercury_sub(format!("hm://remote/user/{}/v23", self.username)); + let rx = self.session.mercury_sub(format!("hm://remote/user/{}/", self.username)); let updates = self.delegate.updates(); loop {