Signal-iOS/SignalServiceKit/Groups/GroupsV2AvatarDownloadOperation.swift
2026-01-09 18:21:42 -06:00

15 lines
434 B
Swift

//
// 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)
}
}
}