Skip to content

Commit 90739ba

Browse files
committed
Bump version
1 parent c4037a8 commit 90739ba

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "historyprovider"
33
description = "historyprovider-rs"
44
license = "MIT"
55
repository = "https://github.com/silicon-heaven/historyprovider-rs"
6-
version = "2.13.1"
6+
version = "2.13.2"
77
edition = "2024"
88

99
[profile.release]

src/sites.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ async fn reload_sites(
458458
.join("\n")
459459
);
460460

461-
let sub_hps_without_pushlog = sites_info
461+
let sites_without_pushlog = sites_info
462462
.iter()
463463
.filter(|(_, site)| sub_hps
464464
.get(&site.sub_hp)
@@ -470,14 +470,14 @@ async fn reload_sites(
470470
let mntchng_subscribers = init_subscribers(
471471
&mut old_state.mntchng_subscribers,
472472
client_cmd_tx,
473-
sub_hps_without_pushlog.clone().map(|(path, _)| (subscription_prefix_path(join_path!("shv", path), &shv_api_version), "mntchng".to_string()))
473+
sites_without_pushlog.clone().map(|(path, _)| (subscription_prefix_path(join_path!("shv", path), &shv_api_version), "mntchng".to_string()))
474474
).await;
475475

476476
log::info!("Loading typeinfo");
477477
let subscribers = init_subscribers(
478478
&mut old_state.subscribers,
479479
client_cmd_tx,
480-
sub_hps_without_pushlog.clone().flat_map(|(path, _)| {
480+
sites_without_pushlog.clone().flat_map(|(path, _)| {
481481
let shv_path = join_path!("shv", path);
482482
const SIG_CMDLOG: &str = "cmdlog";
483483
[
@@ -487,7 +487,7 @@ async fn reload_sites(
487487
})
488488
).await;
489489

490-
let typeinfos = sub_hps_without_pushlog
490+
let typeinfos = sites_without_pushlog
491491
.map(|(path, _)| {
492492
let client_cmd_tx = ClientCommandSender::clone(client_cmd_tx);
493493
async move {

0 commit comments

Comments
 (0)