aboutsummaryrefslogtreecommitdiff
path: root/ufund-api
diff options
context:
space:
mode:
authorbenal01 <bja4245@rit.edu>2025-03-22 11:21:30 -0400
committerbenal01 <bja4245@rit.edu>2025-03-22 11:21:30 -0400
commit2b67bd14828c8c0bffe461a66542a2dba6c19f93 (patch)
tree0286c7e95d261680247ee36324363252b0ab638b /ufund-api
parent5eef7755f799d0f4fffad88dd05f18459c206253 (diff)
downloadJellySolutions-2b67bd14828c8c0bffe461a66542a2dba6c19f93.tar.gz
JellySolutions-2b67bd14828c8c0bffe461a66542a2dba6c19f93.tar.bz2
JellySolutions-2b67bd14828c8c0bffe461a66542a2dba6c19f93.zip
API creation bug fix- the max goal would not be casted properly
Diffstat (limited to 'ufund-api')
-rw-r--r--ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java b/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java
index 36ae341..55cf88d 100644
--- a/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java
+++ b/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java
@@ -50,7 +50,8 @@ public class CupboardController {
public ResponseEntity<Need> createNeed(@RequestBody Map<String, Object> params) {
System.out.println(params);
String name = (String) params.get("name");
- double maxGoal = (double) params.get("maxGoal");
+ System.out.println("attemtping cast maxgoual");
+ double maxGoal = ((Number) params.get("maxGoal")).doubleValue();
Need.GoalType goalType = GoalType.valueOf((String) params.get("type"));
try {