|
@@ -499,7 +499,7 @@ public class OperationsService extends Service {
|
|
boolean found = false;
|
|
boolean found = false;
|
|
while (it.hasNext()) {
|
|
while (it.hasNext()) {
|
|
String keySyncOperation = it.next();
|
|
String keySyncOperation = it.next();
|
|
- found = keySyncOperation.contains(targetKey);
|
|
|
|
|
|
+ found = keySyncOperation.startsWith(targetKey);
|
|
if (found) {
|
|
if (found) {
|
|
keyItems.add(keySyncOperation);
|
|
keyItems.add(keySyncOperation);
|
|
}
|
|
}
|