Skip to content

Commit

Permalink
Merge pull request #1922 from ardriveapp/fix-license-sync
Browse files Browse the repository at this point in the history
PE-7153: fix license sync
  • Loading branch information
thiagocarvalhodev authored Nov 21, 2024
2 parents 8ceaba1 + a9ebf05 commit b489cfa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions lib/services/arweave/arweave_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ class ArweaveService {

yield licenseComposedQuery.data!.transactions.edges
.map((e) => e.node)
.where((e) => e.tags.any((t) => t.name == 'License'))
.toList();
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
query LicenseComposed($transactionIds: [ID!]) {
transactions(
ids: $transactionIds
tags: [{ name: "License", values: [""], op: NEQ }]
) {
edges {
node {
Expand Down

0 comments on commit b489cfa

Please sign in to comment.