Skip to content

Commit

Permalink
fixed response type module deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
hahahannes committed Nov 29, 2023
1 parent bd855dd commit e97214d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class ModuleManagerService {

deleteModule(moduleId: string): Observable<any> {
var url = this.moduleManagerPath + "/modules/" + this.doubleEncode(moduleId)
return this.http.delete(url)
return this.http.delete(url, undefined, undefined, 'text')
}

loadModule(moduleId: string): Observable<any> {
Expand Down

0 comments on commit e97214d

Please sign in to comment.