Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX]: owner.name으로 하면 발생하는 버그 임시 조치
Browse files Browse the repository at this point in the history
jungseokyoung-cloud committed Dec 6, 2024
1 parent 003ac4e commit 0322e1f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Data/Data/SharingVideoRepository.swift
Original file line number Diff line number Diff line change
@@ -34,7 +34,9 @@ public final class SharingVideoRepository: SharingVideoRepositoryInterface {
public init(socketProvider: SharingVideoSocketProvidable) {
self.socketProvider = socketProvider
socketProvider.resourceShared
.compactMap { DataMapper.mappingToSharedVideo($0) }
.compactMap {
return .init(localUrl: $0.url, name: $0.name, author: "iPhone")
}
.subscribe(updatedSharedVideo)
.store(in: &cancellables)

0 comments on commit 0322e1f

Please sign in to comment.