Skip to content

Commit edd0af6

Browse files
committed
fix stac search
1 parent 84254aa commit edd0af6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

its_live_monitoring/src/itslive.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ def pair_exists(reference: tuple[str], secondary: tuple[str], name: str) -> bool
9999
filter={
100100
'op': 'and',
101101
'args': [
102-
{'op': '=', 'args': [{'property': 'scene_1_id'}, reference]},
103-
{'op': '=', 'args': [{'property': 'scene_2_id'}, secondary]},
102+
{'op': '=', 'args': [{'property': 'scene_1_id'}, reference[0]]},
103+
{'op': '=', 'args': [{'property': 'scene_2_id'}, secondary[0]]},
104104
],
105105
},
106106
)

0 commit comments

Comments
 (0)