Skip to content

Commit 1d5540b

Browse files
committed
Reduce max length to 88
1 parent 15f7c87 commit 1d5540b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

crates/svc/src/svc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use std::sync::Arc;
1414
use tower_http::cors::CorsLayer;
1515
use tower_http::trace::TraceLayer;
1616

17-
const MAX_MESSAGE_LEN: usize = 96;
17+
const MAX_MESSAGE_LEN: usize = 88;
1818

1919
#[derive(Deserialize)]
2020
pub struct DeparturesQuery {

frontend/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h3><i>send a wedding message to be displayed on an LED transit departure sign i
2828
type="text"
2929
id="messageContent"
3030
name="content"
31-
maxlength="96"
31+
maxlength="88"
3232
required
3333
>
3434
<div class="char-counter">

0 commit comments

Comments
 (0)