Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
insub4067 authored Oct 2, 2023
2 parents dd47b81 + eb4746e commit 4c89151
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions AsyncSwift/Observed/StampView+Observed.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ extension StampView {

/// Storage에 저장되어 있는 Stamp Image를 가져오는 함수이다.
/// -
private func fetchStampsImages(){
private func fetchStampsImages() {

let events = getEvents()

guard !events.isEmpty else { return isLoading = false }

events.enumerated().forEach { [weak self] in
guard let self else { return }
let event = $0.element
let index = $0.offset

let urlString = "https://raw.githubusercontent.com/Async-Swift/jsonstorage/main/Images/Stamp/" + event + "/stamp.png"
let url = URL(string: urlString)!

Expand Down

0 comments on commit 4c89151

Please sign in to comment.