one getWorkTree less, we should remove them all
This commit is contained in:
parent
9082519f25
commit
51e2a43578
1 changed files with 4 additions and 2 deletions
|
@ -738,8 +738,10 @@ public class PgpHandler extends AppCompatActivity implements OpenPgpServiceConne
|
|||
if (operation.equals("DECRYPT")) {
|
||||
setContentView(R.layout.decrypt_layout);
|
||||
((TextView) findViewById(R.id.crypto_password_file)).setText(extra.getString("NAME"));
|
||||
String cat = new File(extra.getString("FILE_PATH").replace(PasswordRepository.getWorkTree().getAbsolutePath(), ""))
|
||||
.getParentFile().getName();
|
||||
String path = extra
|
||||
.getString("FILE_PATH")
|
||||
.replace(PasswordRepository.getRepositoryDirectory(getApplicationContext()).getAbsolutePath(), "");
|
||||
String cat = new File(path).getParentFile().getName();
|
||||
|
||||
((TextView) findViewById(R.id.crypto_password_category)).setText(cat + "/");
|
||||
decryptAndVerify(new Intent());
|
||||
|
|
Loading…
Reference in a new issue