Skip to content

Commit

Permalink
push onto dev
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjarzayniev committed Feb 20, 2025
1 parent ff8e7fe commit 8a5853c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/eclass/kr/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public class Constants {
public static final String URL = "https://eclass.inha.ac.kr/login.php",
URL_FOR_WEEKLY_EVENTS = "https://eclass.inha.ac.kr/calendar/view.php",
DEADLINE_MESSAGE = "Here is the list of deadlines for upcoming 7 days:",
DEADLINE_MESSAGE = "Here is the list of deadlines for upcoming 7 days :" + "\n\nNew feature, btw. Version 1.2.0 is out! Support the project by starring the repository: https://github.com/sanjarzayniev/deadline-notifier",
NO_DEADLINE_MESSAGE = "No deadline. So keep working",
INVITE_MESSAGE = "Visit this page to check them by yourself: ",
VOD = "VOD",
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/eclass/kr/DeadlineNotifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public static String parseDeadline(String timeOfDeadline, WebElement event) {
}
} else {
String[] parts = timeOfDeadline.split(",");
timeOfDeadline = parts[0] + parts[1] + " at" + parts[2] + " 🥱";
timeOfDeadline = parts[0] + "," + parts[1] + " at" + parts[2] + " 🥱";
}

return timeOfDeadline;
Expand Down

0 comments on commit 8a5853c

Please sign in to comment.