Skip to content

Commit 775a419

Browse files
committed
Updated Action+Extension.swift to change property signature into public var underlyingError: Observable<Error>
1 parent ac7e0f1 commit 775a419

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Action/Action+Extensions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import RxSwift
1212
extension Action {
1313
/// Filters out `notEnabled` errors and returns
1414
/// only underlying error from `ActionError`
15-
var underlyingError: Observable<Error> {
15+
public var underlyingError: Observable<Error> {
1616
return errors.flatMap { actionError -> Observable<Error> in
1717
guard case .underlyingError(let error) = actionError else {
1818
return Observable.empty()

0 commit comments

Comments
 (0)