Skip to content

Commit

Permalink
🔧 리뷰 사항 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
chopmozzi committed Dec 14, 2023
1 parent 3a25446 commit 3860e18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ final class PlaybackInteractor: PlaybackBusinessLogic, PlaybackDataStore {
isFetchReqeust = true
var page: Int = 0
if parentView != .home {
page = playbackVideoInfos.count / 15 + 1
page = playbackVideoInfos.count / Models.fetchPostCount + 1
if page == currentPage {
return false
}
Expand Down
2 changes: 2 additions & 0 deletions iOS/Layover/Layover/Scenes/Playback/PlaybackModels.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ enum PlaybackModels {
let boardID: Int
}

static let fetchPostCount: Int = 15

// MARK: - UseCase Load Video List

enum LoadPlaybackVideoList {
Expand Down

0 comments on commit 3860e18

Please sign in to comment.