Skip to content

Commit

Permalink
Fix handle comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
ZekeSnider authored May 15, 2022
1 parent 3371aa8 commit d138cbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JaredFramework/Entities.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public struct AbstractRecipient: RecipientEntity, Codable, Equatable {
}

public func getSpecificEntity() -> RecipientEntity {
if handle.contains(";-;") {
if handle.contains(";+;") {
return Group(name: nil, handle: handle, participants: [])
} else {
return Person(handle: handle)
Expand Down

0 comments on commit d138cbd

Please sign in to comment.