// This may be a desirable property.
throw new FetchException(FetchExceptionMode.UNKNOWN_METADATA, "Redirect to a USK");
} catch (MalformedURLException e) {
throw new FetchException(FetchExceptionMode.INVALID_URI, e);
}
ArrayList<String> newMetaStrings = newURI.listMetaStrings();
// Move any new meta strings to beginning of our list of remaining meta strings
while(!newMetaStrings.isEmpty()) {
String o = newMetaStrings.remove(newMetaStrings.size()-1);
metaStrings.add(0, o);