Compare commits
4 Commits
9e14befe34
...
171dffeee0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
171dffeee0 | ||
| 1b45f4c8da | |||
| 63cdf58671 | |||
| ccb57637f1 |
@ -19,7 +19,7 @@ async fn get_user(
|
|||||||
let users = user_list.lock().await;
|
let users = user_list.lock().await;
|
||||||
users
|
users
|
||||||
.iter()
|
.iter()
|
||||||
.find(|user| user.person.name == name)
|
.find(|user| user.person.name.to_lowercase() == name.to_lowercase())
|
||||||
.map(|u| u.person.clone())
|
.map(|u| u.person.clone())
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -41,7 +41,10 @@ async fn get_game(
|
|||||||
title: &str,
|
title: &str,
|
||||||
) -> Option<items::Game> {
|
) -> Option<items::Game> {
|
||||||
let games = game_list.lock().await;
|
let games = game_list.lock().await;
|
||||||
games.iter().find(|g| g.title == title).cloned()
|
games
|
||||||
|
.iter()
|
||||||
|
.find(|g| g.title.to_lowercase() == title.to_lowercase())
|
||||||
|
.cloned()
|
||||||
}
|
}
|
||||||
|
|
||||||
#[post("/games/batch", data = "<req>")]
|
#[post("/games/batch", data = "<req>")]
|
||||||
@ -112,7 +115,10 @@ async fn add_opinion(
|
|||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(user) = users.iter_mut().find(|u| u.person.name == token.username) {
|
if let Some(user) = users
|
||||||
|
.iter_mut()
|
||||||
|
.find(|u| u.person.name.to_lowercase() == token.username.to_lowercase())
|
||||||
|
{
|
||||||
let req = req.into_inner();
|
let req = req.into_inner();
|
||||||
let opinion = items::Opinion {
|
let opinion = items::Opinion {
|
||||||
title: req.game_title.clone(),
|
title: req.game_title.clone(),
|
||||||
@ -153,7 +159,10 @@ async fn remove_opinion(
|
|||||||
let games = game_list.lock().await;
|
let games = game_list.lock().await;
|
||||||
let mut result = None;
|
let mut result = None;
|
||||||
|
|
||||||
if let Some(user) = users.iter_mut().find(|u| u.person.name == token.username) {
|
if let Some(user) = users
|
||||||
|
.iter_mut()
|
||||||
|
.find(|u| u.person.name.to_lowercase() == token.username.to_lowercase())
|
||||||
|
{
|
||||||
let req = req.into_inner();
|
let req = req.into_inner();
|
||||||
|
|
||||||
if let Some(existing) = user
|
if let Some(existing) = user
|
||||||
|
|||||||
25
frontend/pnpm-lock.yaml
generated
25
frontend/pnpm-lock.yaml
generated
@ -53,7 +53,7 @@ importers:
|
|||||||
version: 16.5.0
|
version: 16.5.0
|
||||||
ts-proto:
|
ts-proto:
|
||||||
specifier: ^2.8.3
|
specifier: ^2.8.3
|
||||||
version: 2.8.3
|
version: 2.10.1
|
||||||
typescript:
|
typescript:
|
||||||
specifier: ~5.9.3
|
specifier: ~5.9.3
|
||||||
version: 5.9.3
|
version: 5.9.3
|
||||||
@ -152,6 +152,9 @@ packages:
|
|||||||
'@bufbuild/protobuf@2.10.1':
|
'@bufbuild/protobuf@2.10.1':
|
||||||
resolution: {integrity: sha512-ckS3+vyJb5qGpEYv/s1OebUHDi/xSNtfgw1wqKZo7MR9F2z+qXr0q5XagafAG/9O0QPVIUfST0smluYSTpYFkg==}
|
resolution: {integrity: sha512-ckS3+vyJb5qGpEYv/s1OebUHDi/xSNtfgw1wqKZo7MR9F2z+qXr0q5XagafAG/9O0QPVIUfST0smluYSTpYFkg==}
|
||||||
|
|
||||||
|
'@bufbuild/protobuf@2.10.2':
|
||||||
|
resolution: {integrity: sha512-uFsRXwIGyu+r6AMdz+XijIIZJYpoWeYzILt5yZ2d3mCjQrWUTVpVD9WL/jZAbvp+Ed04rOhrsk7FiTcEDseB5A==}
|
||||||
|
|
||||||
'@emnapi/core@1.7.1':
|
'@emnapi/core@1.7.1':
|
||||||
resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==}
|
resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==}
|
||||||
|
|
||||||
@ -425,7 +428,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-EcA07pHJouywpzsoTUqNh5NwGayl2PPVEJKUSinGGSxFGYn+shYbqMGBg6FXDqgXum9Ou/ecb+411ssw8HImJQ==}
|
resolution: {integrity: sha512-EcA07pHJouywpzsoTUqNh5NwGayl2PPVEJKUSinGGSxFGYn+shYbqMGBg6FXDqgXum9Ou/ecb+411ssw8HImJQ==}
|
||||||
engines: {node: ^20.19.0 || >=22.12.0}
|
engines: {node: ^20.19.0 || >=22.12.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
|
vite: npm:rolldown-vite@7.2.5
|
||||||
|
|
||||||
acorn-jsx@5.3.2:
|
acorn-jsx@5.3.2:
|
||||||
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
||||||
@ -990,11 +993,11 @@ packages:
|
|||||||
ts-poet@6.12.0:
|
ts-poet@6.12.0:
|
||||||
resolution: {integrity: sha512-xo+iRNMWqyvXpFTaOAvLPA5QAWO6TZrSUs5s4Odaya3epqofBu/fMLHEWl8jPmjhA0s9sgj9sNvF1BmaQlmQkA==}
|
resolution: {integrity: sha512-xo+iRNMWqyvXpFTaOAvLPA5QAWO6TZrSUs5s4Odaya3epqofBu/fMLHEWl8jPmjhA0s9sgj9sNvF1BmaQlmQkA==}
|
||||||
|
|
||||||
ts-proto-descriptors@2.0.0:
|
ts-proto-descriptors@2.1.0:
|
||||||
resolution: {integrity: sha512-wHcTH3xIv11jxgkX5OyCSFfw27agpInAd6yh89hKG6zqIXnjW9SYqSER2CVQxdPj4czeOhGagNvZBEbJPy7qkw==}
|
resolution: {integrity: sha512-S5EZYEQ6L9KLFfjSRpZWDIXDV/W7tAj8uW7pLsihIxyr62EAVSiKuVPwE8iWnr849Bqa53enex1jhDUcpgquzA==}
|
||||||
|
|
||||||
ts-proto@2.8.3:
|
ts-proto@2.10.1:
|
||||||
resolution: {integrity: sha512-TdXInqG+61pj/TvORqITWjvjTTsL1EZxwX49iEj89+xFAcqPT8tjChpAGQXzfcF4MJwvNiuoCEbBOKqVf3ds3g==}
|
resolution: {integrity: sha512-4sOE1hCs0uobJgdRCtcEwdbc8MAyKP+LJqUIKxZIiKac0rPBlVKsRGEGo2oQ1MnKA2Wwk0KuGP2POkiCwPtebw==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
tslib@2.8.1:
|
tslib@2.8.1:
|
||||||
@ -1169,6 +1172,8 @@ snapshots:
|
|||||||
|
|
||||||
'@bufbuild/protobuf@2.10.1': {}
|
'@bufbuild/protobuf@2.10.1': {}
|
||||||
|
|
||||||
|
'@bufbuild/protobuf@2.10.2': {}
|
||||||
|
|
||||||
'@emnapi/core@1.7.1':
|
'@emnapi/core@1.7.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@emnapi/wasi-threads': 1.1.0
|
'@emnapi/wasi-threads': 1.1.0
|
||||||
@ -1938,16 +1943,16 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
dprint-node: 1.0.8
|
dprint-node: 1.0.8
|
||||||
|
|
||||||
ts-proto-descriptors@2.0.0:
|
ts-proto-descriptors@2.1.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@bufbuild/protobuf': 2.10.1
|
'@bufbuild/protobuf': 2.10.1
|
||||||
|
|
||||||
ts-proto@2.8.3:
|
ts-proto@2.10.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@bufbuild/protobuf': 2.10.1
|
'@bufbuild/protobuf': 2.10.2
|
||||||
case-anything: 2.1.13
|
case-anything: 2.1.13
|
||||||
ts-poet: 6.12.0
|
ts-poet: 6.12.0
|
||||||
ts-proto-descriptors: 2.0.0
|
ts-proto-descriptors: 2.1.0
|
||||||
|
|
||||||
tslib@2.8.1:
|
tslib@2.8.1:
|
||||||
optional: true
|
optional: true
|
||||||
|
|||||||
@ -29,7 +29,7 @@ export const PersonList = ({ people }: Props) => {
|
|||||||
</div>
|
</div>
|
||||||
<div className="grid-container">
|
<div className="grid-container">
|
||||||
{people.map((person, index) => {
|
{people.map((person, index) => {
|
||||||
if (person.name == current_user) {
|
if (person.name.toLowerCase() === current_user.toLowerCase()) {
|
||||||
return (
|
return (
|
||||||
<Link
|
<Link
|
||||||
to={`/games#existing-games`}
|
to={`/games#existing-games`}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user