cloud-ide-element 1.0.103 → 1.0.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2930,7 +2930,7 @@ class CideEleFileManagerService {
|
|
|
2930
2930
|
// Convert payload to string using generateStringFromObject
|
|
2931
2931
|
const queryString = generateStringFromObject(payload);
|
|
2932
2932
|
console.log('📝 [FileManagerService] Query string generated:', queryString);
|
|
2933
|
-
return this.http.get(`${this._baseUrl()}/group/${
|
|
2933
|
+
return this.http.get(`${this._baseUrl()}/group/${queryString}`).pipe(retry(2), catchError(this.handleError.bind(this)), takeUntilDestroyed(this.destroyRef));
|
|
2934
2934
|
}
|
|
2935
2935
|
/**
|
|
2936
2936
|
* Fetch and store files by group ID in service state
|