Skip to content

Commit

Permalink
fix: parsing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuz0u committed Sep 14, 2021
1 parent c182bdb commit 7351bac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 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_13.0.app
APP_VERSION: '1.1.1'
APP_VERSION: '1.1.2'
SCHEME_NAME: 'EhPanda'
ALTSTORE_JSON_PATH: './AltStore.json'
FILTER_PATH: './ReleaseNotesFilter'
Expand Down
5 changes: 3 additions & 2 deletions EhPanda.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -653,8 +653,8 @@
ABC3C7502593696C00E0C11B /* Sources */,
ABC3C7512593696C00E0C11B /* Frameworks */,
ABC3C7522593696C00E0C11B /* Resources */,
AB69FE41263C328400716FBD /* ShellScript */,
AB5BE68126B95FDD007D4A55 /* Embed App Extensions */,
AB69FE41263C328400716FBD /* SwiftLint */,
);
buildRules = (
);
Expand Down Expand Up @@ -798,7 +798,7 @@
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
AB69FE41263C328400716FBD /* ShellScript */ = {
AB69FE41263C328400716FBD /* SwiftLint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
Expand All @@ -807,6 +807,7 @@
);
inputPaths = (
);
name = SwiftLint;
outputFileListPaths = (
);
outputPaths = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class GalleryDetailMO: NSManagedObject {}
extension GalleryDetailMO: ManagedObjectProtocol {
func toEntity() -> GalleryDetail {
GalleryDetail(
gid: gid, title: title, isFavored: isFavored,
gid: gid, title: title, jpnTitle: jpnTitle, isFavored: isFavored,
visibility: visibility?.toObject() ?? GalleryVisibility.yes,
rating: rating, userRating: userRating, ratingCount: Int(ratingCount),
category: Category(rawValue: category).forceUnwrapped,
Expand Down

0 comments on commit 7351bac

Please sign in to comment.