Skip to content

Commit

Permalink
Apply additional changes requested in CR
Browse files Browse the repository at this point in the history
  • Loading branch information
davigonz committed May 30, 2019
1 parent 3d3669b commit 27fe03c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class SharePublicLinkListAdapter(
val share = mPublicLinks[position]

// If there's no name, set the token as name
view.publicLinkName.text = if (share.name?.isEmpty() == true) share.token else share.name
view.publicLinkName.text = if (share.name.isNullOrEmpty()) share.token else share.name

// bind listener to get link
view.getPublicLinkButton.setOnClickListener { mListener.copyOrSendPublicLink(mPublicLinks[position]) }
Expand Down

0 comments on commit 27fe03c

Please sign in to comment.