mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
show attachments if premium or org item
This commit is contained in:
parent
9a399e06f3
commit
0ffc6e4a1a
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ namespace Bit.App.Pages
|
|||
{
|
||||
Table.Root.Remove(AttachmentsSection);
|
||||
}
|
||||
if(Model.ShowAttachments && _tokenService.TokenPremium)
|
||||
if(Model.ShowAttachments && (_tokenService.TokenPremium || cipher.OrganizationId != null))
|
||||
{
|
||||
AttachmentsSection = new TableSection(AppResources.Attachments);
|
||||
AttachmentCells = new List<AttachmentViewCell>();
|
||||
|
|
Loading…
Reference in a new issue