Skip to content

Commit

Permalink
fixing the restore of a stateful plugin (#603)
Browse files Browse the repository at this point in the history
  • Loading branch information
nhamming authored Oct 27, 2023
1 parent 2735876 commit 8605166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Loop/Managers/StatefulPluginManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class StatefulPluginManager: StatefulPluggableProvider {
}

private func statefulPluginTypeFromRawValue(_ rawValue: StatefulPluggable.RawStateValue) -> StatefulPluggable.Type? {
guard let identifier = rawValue["serviceIdentifier"] as? String else {
guard let identifier = rawValue["statefulPluginIdentifier"] as? String else {
return nil
}

Expand Down

0 comments on commit 8605166

Please sign in to comment.