Skip to content

Commit

Permalink
🩹 Fixed small type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
LNA-DEV committed Aug 1, 2023
1 parent ef3953a commit ffa64f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/APIs/inbox_api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class InboxAPI {
return collection;
}

Future<OrderedCollectionPage> getPosts<T>(String nextUrl) async {
Future<OrderedCollectionPage<T>> getPosts<T>(String nextUrl) async {
http.Response pageResponse = await AuthBaseApi.get(
url: Uri.parse(nextUrl),
);
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: activitypub
description: A library for the ActivityPub standard. Created an also used by Fedodo.
version: 1.2.6
version: 1.2.7
repository: https://github.com/Fedodo/Fedodo.Pub.ActivityPub

environment:
Expand Down

0 comments on commit ffa64f6

Please sign in to comment.