Patrik Číhal

Results 23 comments of Patrik Číhal

Hi could you please provide the whole line, that solved your problem?

No I just don't want it to run in background draining my battery. If I logout I am going to have to login later...

Ok, but what if I want to hide it from notification area until I reopen the app again? (without permanently changing it in setting)

Looks like "Capsa Lite" is no more available: https://github.com/themis-ai/capsa.

Yes, so to create edges I'm doing this: ```rust let ei1 = gc.g.add_edge(creating_node_id, NodeIndex::from(payload.id as u32), Edge::new(edge_data)); gc.g.edge_weight_mut(ei1).unwrap().bind(ei1, 0); if EdgeData::Equivalence == edge_data { let ei2 = gc.g.add_edge(NodeIndex::from(payload.id as u32),...

Sry don't really have time to set up a full reproducible example but here is part of my layout and the thing inside the hook runs every time i change...

It's just weird that in --release it works flawlessly.

Here is the full Route component. ```rs #[derive(Debug, Clone, Routable, PartialEq)] #[rustfmt::skip] enum Route { #[layout(Layout2)] #[route("/")] Home {}, #[route("/discover")] DiscoverEmpty {}, #[route("/discover/:chat_id")] Discover { chat_id: Uuid }, #[route("/item/:id")] Inspect...

On android setting the production url results in Deserialization error, and setting it to just http://127.0.0.1:8080 with emulator results in: ``` 02-06 16:27:37.139 4174 4248 I RustStdoutStderr: called `Result::unwrap()` on...