Path: blob/main/SignalServiceKit/Groups/GroupsV2AvatarDownloadOperation.swift
1 views
//
// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import Foundation
enum GroupsV2AvatarDownloadOperation {
static func run(urlPath: String, maxDownloadSize: UInt64) async throws -> Data {
return try await Retry.performWithBackoff(maxAttempts: 4) {
return try await CDNDownloadOperation.tryToDownload(urlPath: urlPath, maxDownloadSize: maxDownloadSize)
}
}
}