1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-11 16:04:05 +02:00

fix missing assignment *cough*

This commit is contained in:
Andreas Shimokawa 2015-12-06 15:39:34 +01:00
parent 112dfa184a
commit 39e09946cd

View File

@ -433,7 +433,7 @@ public class DeviceCommunicationService extends Service {
Cursor contactLookup = null;
try {
contentResolver.query(uri, null, null, null, null);
contactLookup = contentResolver.query(uri, null, null, null, null);
} catch (SecurityException e) {
return name;
}