diff options
Diffstat (limited to 'OpenKeychain/src/main/java/org/sufficientlysecure')
| -rw-r--r-- | OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/CreateKeyEmailFragment.java | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/CreateKeyEmailFragment.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/CreateKeyEmailFragment.java index 3d7b31905..552fe6954 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/CreateKeyEmailFragment.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/CreateKeyEmailFragment.java @@ -156,7 +156,7 @@ public class CreateKeyEmailFragment extends Fragment {                              email.equals(mEmailEdit.getText().toString())) {                          Notify.create(getActivity(),                                  getString(R.string.create_key_email_already_exists_text), -                                Notify.LENGTH_LONG, Notify.Style.ERROR).show(); +                                Notify.LENGTH_LONG, Notify.Style.ERROR).show(CreateKeyEmailFragment.this);                          return;                      }                      //check for duplicated emails inside the adapter @@ -164,7 +164,7 @@ public class CreateKeyEmailFragment extends Fragment {                          if (email.equals(model.email)) {                              Notify.create(getActivity(),                                      getString(R.string.create_key_email_already_exists_text), -                                    Notify.LENGTH_LONG, Notify.Style.ERROR).show(); +                                    Notify.LENGTH_LONG, Notify.Style.ERROR).show(CreateKeyEmailFragment.this);                              return;                          }                      }  | 
