From 309b446a5ce33d98d649c172e5cebf4a603821a3 Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Thu, 7 Oct 2021 14:34:32 -0600 Subject: [PATCH] fix install progress jump --- appmgr/src/s9pk/reader.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/appmgr/src/s9pk/reader.rs b/appmgr/src/s9pk/reader.rs index e00da7344..f2c801b78 100644 --- a/appmgr/src/s9pk/reader.rs +++ b/appmgr/src/s9pk/reader.rs @@ -67,6 +67,7 @@ impl S9pkReader> { } impl S9pkReader { pub async fn validate(&mut self) -> Result<(), Error> { + self.rdr.seek(SeekFrom::Start(0)).await?; Ok(()) } pub async fn from_reader(mut rdr: R) -> Result {