lemmy-js-client 0.17.0-rc.16 → 0.17.0-rc.17
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.
- package/dist/http.js +2 -0
- package/package.json +1 -1
package/dist/http.js
CHANGED
@@ -1003,8 +1003,10 @@ var LemmyHttp = /** @class */ (function () {
|
|
1003
1003
|
}());
|
1004
1004
|
exports.LemmyHttp = LemmyHttp;
|
1005
1005
|
function encodeGetParams(p) {
|
1006
|
+
console.log(p);
|
1006
1007
|
// Necessary to remove the Options
|
1007
1008
|
var serialized = JSON.parse((0, class_transformer_1.serialize)(p));
|
1009
|
+
console.log(serialized);
|
1008
1010
|
return (Object.entries(serialized)
|
1009
1011
|
// TODO test this, it might serialize the undefineds
|
1010
1012
|
.map(function (kv) { return kv.map(encodeURIComponent).join("="); })
|
package/package.json
CHANGED