Skip to content

Commit

Permalink
SPT-1998 fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
mrandrewsmith committed Apr 16, 2024
1 parent a94c1fe commit 2121a70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion NodeKit/CacheNode/ETag/UrlETagSaverNode.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ open class UrlETagSaverNode: AsyncNode {
let url = data.request.url,
let urlAsKey = url.withOrderedQuery()
else {
return next?.process(data) ?? .emit(data: ())
return next?.processLegacy(data) ?? .emit(data: ())
}

UserDefaults.etagStorage?.set(tag, forKey: urlAsKey)
Expand Down
6 changes: 3 additions & 3 deletions NodeKit/MockerIntegration/MockerProxyConfigNode.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public enum MockerProxyConfigKey {
/// - SeeAlso:
/// - `MetadataConnectorNode`
/// - `RequestRouterNode`
open class MockerProxyConfigNode<Raw, Output>: Node {

open class MockerProxyConfigNode<Raw, Output>: AsyncNode {
private typealias Keys = MockerProxyConfigKey

// MARK: - Public Properties
Expand Down Expand Up @@ -54,7 +54,7 @@ open class MockerProxyConfigNode<Raw, Output>: Node {
// MARK: - Node

/// Добавляет хедеры в `data`
open func process(_ data: RequestModel<Raw>) -> Observer<Output> {
open func processLegacy(_ data: RequestModel<Raw>) -> Observer<Output> {

guard self.isProxyingOn else {
return self.next.processLegacy(data)
Expand Down

0 comments on commit 2121a70

Please sign in to comment.