The has methods consistently returns NaN as progress when computing hash for files loaded from remote URL To reproduce: ``` const file = data.open("https://transparenciapresupuestaria.opp.gub.uy/sites/default/files/datos-abiertos/credito_presupuestal_detalle_2011.csv") const hash = await file.hash("sha256", (progress) => { console.log(progress) //outputs NaN }); ```