Renamed Invalid Identifier Resource

main
Jackson Morgan 1 month ago
parent 5b5ff66833
commit 689a19547c
  1. 2
      packages/connected-solid/src/resources/SolidResource.ts
  2. 2
      packages/connected/src/InvalidIdentifierResource.ts

@ -818,7 +818,7 @@ export abstract class SolidResource
): Promise<void> {
const objectResource = this.context.dataset.getResource(message.object);
// Do Nothing if the resource is invalid.
if (objectResource.type === "InvalidIdentifierResouce") return;
if (objectResource.type === "InvalidIdentifierResource") return;
if (objectResource.type === "SolidLeaf") {
switch (message.type) {
case "Update":

@ -11,7 +11,7 @@ export class InvalidIdentifierResource
implements Resource
{
public readonly uri: string;
public readonly type = "InvalidIdentifierResouce" as const;
public readonly type = "InvalidIdentifierResource" as const;
public status: InvalidUriError<this>;
public readonly isError = false as const;

Loading…
Cancel
Save