Skip to content

Commit

Permalink
Merge pull request #287 from EhPanda-Team/develop
Browse files Browse the repository at this point in the history
Bugfixes
  • Loading branch information
chihchy authored Nov 4, 2022
2 parents 17e9d2e + 70eb1c0 commit f07cad1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
types: [closed]
env:
DEVELOPER_DIR: /Applications/Xcode_14.1.app
APP_VERSION: '2.4.3'
APP_VERSION: '2.4.4'
SCHEME_NAME: 'EhPanda'
ALTSTORE_JSON_PATH: './AltStore.json'
BUILDS_PATH: '/tmp/action-builds'
Expand Down
2 changes: 1 addition & 1 deletion EhPanda/View/Detail/PreviewsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ struct PreviewsView: View {
Text("\(index)").font(DeviceUtil.isPadWidth ? .callout : .caption).foregroundColor(.secondary)
}
.onAppear {
if viewStore.databaseLoadingState == .loading
if viewStore.databaseLoadingState != .loading
&& viewStore.previewURLs[index] == nil && (index - 1) % 20 == 0
{
viewStore.send(.fetchPreviewURLs(index))
Expand Down

0 comments on commit f07cad1

Please sign in to comment.