Compare commits

..

2 commits

Author SHA1 Message Date
ece742a1e3 ureq error message parsing 2025-06-24 02:08:35 +00:00
1e05155cc1 minor refactoring 2025-06-24 02:05:27 +00:00
3 changed files with 20 additions and 15 deletions

View file

@ -108,10 +108,7 @@ impl AppState {
self.touch_progressbar(); self.touch_progressbar();
let uploading = self let uploading = self.inner.expect_uploading();
.inner
.get_uploading(&self.http)?
.expect("we just checked!");
debug!("{uploading:?}"); debug!("{uploading:?}");
let chunk = uploading.read(buffer)?; let chunk = uploading.read(buffer)?;

View file

@ -87,6 +87,12 @@ impl CacheFile {
} }
} }
pub fn expect_uploading(&mut self) -> &mut file::Uploading {
self.uploading
.as_mut()
.expect("expect_uploading called while not uploading")
}
pub fn peek_uploading(&self) -> Option<&file::Uploading> { pub fn peek_uploading(&self) -> Option<&file::Uploading> {
self.uploading.as_ref() self.uploading.as_ref()
} }
@ -103,21 +109,23 @@ impl CacheFile {
} }
pub fn rewind_chunk(mut self) -> Option<Self> { pub fn rewind_chunk(mut self) -> Option<Self> {
let Some(upl) = self.uploading.take() else { self.uploading = Some(
panic!("rewind_chunk called while not uploading"); self.uploading
}; .take()
.expect("rewind_chunk called while not uploading")
self.uploading = Some(upl.rewind()?); .rewind()?,
);
Some(self) Some(self)
} }
pub fn abort_upload(&mut self) { pub fn abort_upload(&mut self) {
let Some(upl) = self.uploading.take() else { self.files.push_front(
panic!("abort_upload called while not uploading"); self.uploading
}; .take()
.expect("abort_upload called while not uploading")
self.files.push_front(upl.abort()); .abort(),
);
} }
pub fn share_notify(&self, client: &impl Client) -> sharry::Result<()> { pub fn share_notify(&self, client: &impl Client) -> sharry::Result<()> {

View file

@ -32,7 +32,7 @@ fn find_cause(
trace!("std::io::Error {error:?}"); trace!("std::io::Error {error:?}");
if let Some(msg) = error.get_ref().map(ToString::to_string) { if let Some(msg) = error.get_ref().map(ToString::to_string) {
if msg == "failed to lookup address information: Name does not resolve" { if msg.starts_with("failed to lookup address information") {
ClientError::InvalidParameter(sharry::Parameter::Uri(uri.to_string())) ClientError::InvalidParameter(sharry::Parameter::Uri(uri.to_string()))
} else { } else {
error.into() error.into()