Skip to content

Commit

Permalink
bugfix - mix of int and long
Browse files Browse the repository at this point in the history
  • Loading branch information
MFlisar committed Feb 7, 2018
1 parent ae18450 commit c04c5bd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -588,8 +588,8 @@ public ImageView getImageView() {
return imageView;
}

public int getSlideId() {
return getArguments().getInt(ARGUMENT_ID);
public long getSlideId() {
return getArguments().getLong(ARGUMENT_ID);
}

@Override
Expand Down

0 comments on commit c04c5bd

Please sign in to comment.