Fixed issue with wrong context for dialog
This commit is contained in:
parent
bb695deaed
commit
a7012e74ac
1 changed files with 3 additions and 2 deletions
|
@ -190,8 +190,9 @@ public class FavouritesDbHelper {
|
|||
}
|
||||
}
|
||||
}
|
||||
if (index.length() > 0 || emoticons){
|
||||
AlertDialog.Builder builder = new AlertDialog.Builder(context);
|
||||
if ((index.length() > 0 || emoticons)&&
|
||||
context.getMapActivity() != null){
|
||||
AlertDialog.Builder builder = new AlertDialog.Builder(context.getMapActivity());
|
||||
builder.setTitle(R.string.fav_point_dublicate);
|
||||
if (emoticons){
|
||||
builder.setMessage(context.getString(R.string.fav_point_emoticons_message, name));
|
||||
|
|
Loading…
Reference in a new issue