Skip to content

Commit

Permalink
Fix issue with cursor being required in output
Browse files Browse the repository at this point in the history
"SearchActorsOutput" contained a "cursor" property that wasn't
optional, even though the lexicon states it is.
  • Loading branch information
MasterJ93 committed Oct 24, 2024
1 parent b2c8a35 commit 4dd68ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ extension AppBskyLexicon.Actor {
public struct SearchActorsOutput: Codable {

/// The mark used to indicate the starting point for the next set of results. Optional.
public let cursor: String
public let cursor: String?

/// An array of actors.
public let actors: [ProfileViewDefinition]
Expand Down

0 comments on commit 4dd68ab

Please sign in to comment.