Skip to content
This repository has been archived by the owner on Dec 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #71 from Stremio/release/0.44.28
Browse files Browse the repository at this point in the history
Release v0.44.28
  • Loading branch information
tymmesyde authored Oct 31, 2023
2 parents 10858be + db05a1d commit 7d0301e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stremio-core-web"
version = "0.44.27"
version = "0.44.28"
authors = ["Smart Code OOD"]
edition = "2021"

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stremio/stremio-core-web",
"version": "0.44.27",
"version": "0.44.28",
"description": "Bridge between stremio-core and stremio-web",
"author": "Smart Code OOD",
"main": "stremio_core_web.js",
Expand Down
2 changes: 1 addition & 1 deletion src/model/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl WebModel {
let (installed_addons, installed_addons_effects) =
InstalledAddonsWithFilters::new(&profile);
let (streaming_server, streaming_server_effects) = StreamingServer::new::<WebEnv>(&profile);
let (local_search, local_search_effects) = LocalSearch::init::<WebEnv>();
let (local_search, local_search_effects) = LocalSearch::new::<WebEnv>();
let model = WebModel {
ctx: Ctx::new(profile, library, streams, notifications),
auth_link: Default::default(),
Expand Down
2 changes: 1 addition & 1 deletion src/model/serialize_local_search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mod model {
pub current_records: Vec<Searchable>,
/// The results of the search autocompletion
pub search_results: Vec<Searchable>,
pub latest_records: Loadable<Vec<Searchable>, EnvError>,
pub latest_records: Option<Loadable<Vec<Searchable>, EnvError>>,
}
}

Expand Down

0 comments on commit 7d0301e

Please sign in to comment.