Redundancy videos not able to use object storage?

I’ve setup a PeerTube instance that uses object storage (Backblaze B2) but it looks like that doesn’t apply to the redundancy folder which is being stored locally on my instance. With the old method of using FUSE it was possible, is it possible with the new method?

Here’s my object_storage block in my config file:

object_storage:
  enabled: true
  endpoint: 's3.us-west-001.backblazeb2.com' # 's3.amazonaws.com' or 's3.fr-par.scw.cloud' for example
  region: 'US-West'

  credentials:
    access_key_id: '<keyid>'
    secret_access_key: '<accesskey>'

  max_upload_part: 2GB

  streaming_playlists:
    bucket_name: '<bucketname>'
    prefix: 'streaming-playlists:'
    base_url: 'https://f001.backblazeb2.com/file/<bucketname>'

  videos:
    bucket_name: '<bucketname>'
    prefix: 'videos:'
    base_url: 'https://f001.backblazeb2.com/file/<bucketname>'

  redundancy:
    bucket_name: '<bucketname>'
    prefix: 'redundancy:'
    base_url: 'https://f001.backblazeb2.com/file/<bucketname>'

Hello,

Duplicating remote videos using redundancy in object storage is not supported by peertube.