From 4932e07898571c6c621dbadec6aeee86ea388f3f Mon Sep 17 00:00:00 2001
From: Cerys <cerysamberlewis@gmail.com>
Date: Fri, 7 Mar 2025 18:37:01 +0000
Subject: [PATCH] Update uuid.php

---
 Pages/tune/uuid.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Pages/tune/uuid.php b/Pages/tune/uuid.php
index c2522c8..9ba917a 100644
--- a/Pages/tune/uuid.php
+++ b/Pages/tune/uuid.php
@@ -100,7 +100,7 @@ foreach($tuneParts as $tunePartDetails)
                 spec: 'Tunes AS T_T',
                 cond: 'T_TP.TuneID=T_T.ID',
             )
-            ->where(cond: 'T.TunePartA=:__tune_part_id__')
+            ->where(cond: 'T.TunePartA LIKE :__tune_part_id__')
             ->bindValue(name: '__tune_part_id__', value: $tunePartDetails['ID'])
     );
     $similarTunesB = $db->RunSelect(
@@ -122,7 +122,7 @@ foreach($tuneParts as $tunePartDetails)
                 spec: 'Tunes AS T_T',
                 cond: 'T_TP.TuneID=T_T.ID',
             )
-            ->where(cond: 'T.TunePartB=:__tune_part_id__')
+            ->where(cond: 'T.TunePartB LIKE :__tune_part_id__')
             ->bindValue(name: '__tune_part_id__', value: $tunePartDetails['ID'])
     );
     $builder = [];