Skip to content

Commit d8dec77

Browse files
Search string for appended without
1 parent 07d3778 commit d8dec77

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
# [3.13.26] - 19-06-2024
6+
7+
### Fixes
8+
9+
- Search string for `InPlayer.Payment.getSitePlans` appended without `?`
10+
511
# [3.13.25] - 17-06-2024
612

713
### Added

src/constants/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export const API = {
113113
getSitePlans: (siteId: string, plansIds: string[] = []) =>
114114
`/v3/sites/${siteId}/plans${
115115
plansIds.length
116-
? `q=id:(${plansIds.map((planId) => `"${planId}"`).join(' OR ')})`
116+
? `?q=id:(${plansIds.map((planId) => `"${planId}"`).join(' OR ')})`
117117
: ''
118118
}`,
119119

0 commit comments

Comments
 (0)