daydream

A small matrix web client written in rust
git clone git://archive.git.mtrnord.blog/daydream-mx/daydream.git
Log | Files | Refs | README | LICENSE

commit 423303de41d64197dc0839d8789b15520c72bfb2
parent a5cdc26968e2346d95c55c7705ddad1c3e1941cf
Author: Marcel <mtrnord1@gmail.com>
Date:   Sat, 13 Jun 2020 21:19:49 +0200

Fix dummy task

Took 6 minutes

Diffstat:
Mpackage.json | 2+-
Msrc/app/matrix/sync.rs | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package.json b/package.json @@ -4,7 +4,7 @@ "test": "yarn run test:chrome", "test:chrome": "start-server-and-test start http-get://localhost:8888 cy:run", "test:firefox": "start-server-and-test dummy http-get://localhost:8888 cy:run:firefox", - "dummy": "", + "dummy": "time", "build:dev": "webpack --mode development", "build": "webpack --mode production", "start:dev": "webpack-dev-server --mode development", diff --git a/src/app/matrix/sync.rs b/src/app/matrix/sync.rs @@ -30,7 +30,7 @@ impl Sync { } async fn on_sync_response(&self, response: SyncResponse) { - info!("got sync!"); + debug!("got sync!"); for (room_id, room) in response.rooms.join { // FIXME: Is there a smarter way? let resp = Response::SyncPing;