Skip to content

Commit

Permalink
Changing request method from POST to GET in transform store request.
Browse files Browse the repository at this point in the history
  • Loading branch information
rnine committed Nov 12, 2020
1 parent d79c189 commit af73716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/FilestackSDK/Public/Models/Transformable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public extension Transformable {
transformationTasks.insert(task, at: 0)

// Create and perform post request
guard let request = ProcessService.shared.request(url: url, method: .post) else { return self }
guard let request = ProcessService.shared.request(url: url, method: .get) else { return self }

request.validate(statusCode: Constants.validHTTPResponseCodes)

Expand Down

0 comments on commit af73716

Please sign in to comment.