Display progress of download

I’m using a remote catalog and I’m trying to display the progress of the download. However, it only returns 0. Is there something I’m missing?

var handle = m_AssetReference.LoadSceneAsync(LoadSceneMode.Additive);
        handle.Completed += OnCompleted;
        while (!handle.IsDone)
        {
            var status = handle.GetDownloadStatus();
            float progress = status.Percent;
            progressUpdated?.Invoke(progress);
            yield return null;
        }

After clearing my cache using yield return Addressables.ClearDependencyCacheAsync(m_AssetReference, false); it worked as expected.