Skip to content

Commit

Permalink
Merge branch 'tdulcet-passphrase' into master
Browse files Browse the repository at this point in the history
See #147
  • Loading branch information
timvisee committed Feb 14, 2023
2 parents 65730db + dc9d072 commit dee6b3e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ AWS example using Ubuntu Server `20.04`: [docs/AWS.md](docs/AWS.md)
- Web: _this repository_
- Command-line: [`ffsend`](https://github.com/timvisee/ffsend)
- Android: _see [Android](#android) section_
- Thunderbird: [FileLink provider for Send](https://addons.thunderbird.net/en-US/thunderbird/addon/filelink-provider-for-send/)
- Thunderbird: [FileLink provider for Send](https://addons.thunderbird.net/thunderbird/addon/filelink-provider-for-send/)

#### Android

Expand Down
2 changes: 1 addition & 1 deletion app/ui/archiveTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function expiryInfo(translate, archive) {
}

function password(state) {
const MAX_LENGTH = 32;
const MAX_LENGTH = 4096;

return html`
<div class="mb-2 px-1">
Expand Down
2 changes: 1 addition & 1 deletion app/ui/downloadPassword.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = function(state, emit) {
class="w-full border-l border-t border-b rounded-l-lg rounded-r-none ${invalid
? 'border-red dark:border-red-40'
: 'border-grey'} leading-loose px-2 py-1 dark:bg-grey-80"
maxlength="32"
maxlength="4096"
autocomplete="off"
placeholder="${state.translate('unlockInputPlaceholder')}"
oninput="${inputChanged}"
Expand Down

0 comments on commit dee6b3e

Please sign in to comment.