Temporary disable of master key id extraction from uri

This commit is contained in:
Dominik Schürmann 2014-04-09 19:57:57 +02:00
parent 21e6110b6d
commit 6d00ca7fdb

View File

@ -124,13 +124,13 @@ public class ProviderHelper {
*/ */
public static long getMasterKeyId(Context context, Uri queryUri) throws NotFoundException { public static long getMasterKeyId(Context context, Uri queryUri) throws NotFoundException {
// try extracting from the uri first // try extracting from the uri first
String firstSegment = queryUri.getPathSegments().get(1); // String firstSegment = queryUri.getPathSegments().get(1);
if(!firstSegment.equals("find")) try { // if(!firstSegment.equals("find")) try {
return Long.parseLong(firstSegment); // return Long.parseLong(firstSegment);
} catch(NumberFormatException e) { // } catch(NumberFormatException e) {
// didn't work? oh well. // // didn't work? oh well.
Log.d(Constants.TAG, "Couldn't get masterKeyId from URI, querying..."); // Log.d(Constants.TAG, "Couldn't get masterKeyId from URI, querying...");
} // }
Object data = getGenericData(context, queryUri, KeyRings.MASTER_KEY_ID, FIELD_TYPE_INTEGER); Object data = getGenericData(context, queryUri, KeyRings.MASTER_KEY_ID, FIELD_TYPE_INTEGER);
if(data != null) { if(data != null) {
return (Long) data; return (Long) data;