Remove useless triple =

This commit is contained in:
Arnaud 2025-05-30 15:45:22 +02:00
parent 1a3b6bd876
commit 4fcf34a136
No known key found for this signature in database
GPG Key ID: B8FBC178F10CA7AE

View File

@ -57,7 +57,7 @@ export class CodexNode {
): Promise<SafeValue<CodexSpr<CodexSprContentType>>> {
const url = this.url + Api.config.prefix + "/spr";
if (type === "json") {
if (type == "json") {
return Fetch.safeJson<CodexSprJsonResponse>(url, {
method: "GET",
headers: {
@ -84,7 +84,7 @@ export class CodexNode {
): Promise<SafeValue<CodexPeerId<CodexPeerIdContentType>>> {
const url = this.url + Api.config.prefix + "/node/peerid";
if (type === "json") {
if (type == "json") {
return Fetch.safeJson<CodexPeerIdJsonResponse>(url, {
method: "GET",
headers: {