Unverified Commit 3c25724f authored by Hong Minhee's avatar Hong Minhee
Browse files

Fix TypeError in collection dispatcher w/ base-url

parent a90c408b
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -8,6 +8,9 @@ Version 1.0.23

To be released.

 -  Fixed a `TypeError` thrown by the followers collection dispatcher when
    the `base-url` parameter was provided.


Version 1.0.22
--------------
+1 −1
Original line number Diff line number Diff line
@@ -253,7 +253,7 @@ export async function handleCollection<
      }
      collection = new OrderedCollection({
        id: baseUri,
        totalItems: Number(totalItems),
        totalItems: totalItems == null ? null : Number(totalItems),
        first,
        last,
      });