Skip to content

Commit

Permalink
fix: build errors in 2 files
Browse files Browse the repository at this point in the history
  • Loading branch information
polymo1 committed Apr 27, 2024
1 parent 3e14ec5 commit 723ba22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apple-codesign-wrapper/src/dummy_bundle_id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fn add_bundle_id(bundle_id: &str, path: &Path) {
);
dummy_bundle_id_num_counter.increase();
drop(dummy_bundle_id_num_counter);
plist.insert(BUNDLE_ID_PROPERTY, dummy_bundle_id);
plist.insert(BUNDLE_ID_PROPERTY.to_owned(), plist::Value::String(dummy_bundle_id));

let mut bytes = vec![];
plist::to_writer_xml(&mut bytes, plist).unwrap();
Expand Down
2 changes: 1 addition & 1 deletion icloud-auth/src/anisette.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ impl AnisetteData {
.set_configuration_path(PathBuf::new().join("anisette_test"))
.set_anisette_url("https://ani.f1sh.me".to_string()),
) {
Ok(mut b) => match b.get_authentication_headers() {
Ok(mut b) => match b.provider.get_authentication_headers() {
Ok(b) => b,
Err(_) => return Err(Error::ErrorGettingAnisette),
},
Expand Down

0 comments on commit 723ba22

Please sign in to comment.