Skip to content

Commit dee6b3e

Browse files
committed
Merge branch 'tdulcet-passphrase' into master
See #147
2 parents 65730db + dc9d072 commit dee6b3e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ AWS example using Ubuntu Server `20.04`: [docs/AWS.md](docs/AWS.md)
152152
- Web: _this repository_
153153
- Command-line: [`ffsend`](https://github.com/timvisee/ffsend)
154154
- Android: _see [Android](#android) section_
155-
- Thunderbird: [FileLink provider for Send](https://addons.thunderbird.net/en-US/thunderbird/addon/filelink-provider-for-send/)
155+
- Thunderbird: [FileLink provider for Send](https://addons.thunderbird.net/thunderbird/addon/filelink-provider-for-send/)
156156

157157
#### Android
158158

app/ui/archiveTile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function expiryInfo(translate, archive) {
2626
}
2727

2828
function password(state) {
29-
const MAX_LENGTH = 32;
29+
const MAX_LENGTH = 4096;
3030

3131
return html`
3232
<div class="mb-2 px-1">

app/ui/downloadPassword.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module.exports = function(state, emit) {
3232
class="w-full border-l border-t border-b rounded-l-lg rounded-r-none ${invalid
3333
? 'border-red dark:border-red-40'
3434
: 'border-grey'} leading-loose px-2 py-1 dark:bg-grey-80"
35-
maxlength="32"
35+
maxlength="4096"
3636
autocomplete="off"
3737
placeholder="${state.translate('unlockInputPlaceholder')}"
3838
oninput="${inputChanged}"

0 commit comments

Comments
 (0)