lemmy-js-client 0.17.0-rc.16 → 0.17.0-rc.17
Sign up to get free protection for your applications and to get access to all the features.
- 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