Skip to content

Commit 78aee69

Browse files
frameworklabsantranapp
authored andcommitted
fixing crash when hitting more/reset (#139)
* adding .DS_Store and Carthage to .gitignore * fixing crash when resetting. * Only ignoring Carthage/Build instead of Carthage
1 parent 63a3d72 commit 78aee69

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
#
33
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
44

5+
.DS_Store
6+
57
## Build generated
68
DerivedData/
79

@@ -53,6 +55,7 @@ playground.xcworkspace
5355
# Carthage
5456
#
5557
# Add this line if you want to avoid checking in source code from Carthage dependencies.
58+
Carthage/Build/
5659
Carthage/Checkouts
5760

5861
# fastlane

SwiftCommunity/SwiftCommunity/Sources/Application/Scenes/Dashboard/DashboardComponent.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ extension DashboardComponent: HasAuthorsService {
3535
extension DashboardComponent: HasConferencesGitService {
3636

3737
var conferencesGitService: ConferencesGitServiceProtocol {
38-
return dependencyProvider.context.engine.serviceRegistry.resolve(type: ConferencesGitService.self)
38+
return dependencyProvider.context.engine.serviceRegistry.resolve(type: ConferencesGitServiceProtocol.self)
3939
}
4040
}

0 commit comments

Comments
 (0)