-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: use api v2 #91
base: dev
Are you sure you want to change the base?
Conversation
clang-tidy review says "All clean, LGTM! 👍" |
2ea137f
to
4e309f7
Compare
clang-tidy review says "All clean, LGTM! 👍" |
3 similar comments
clang-tidy review says "All clean, LGTM! 👍" |
clang-tidy review says "All clean, LGTM! 👍" |
clang-tidy review says "All clean, LGTM! 👍" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
3f6a54e
to
ade37e4
Compare
@@ -34,16 +34,15 @@ inline time_t parseIso8601Utc(const char* date) { | |||
struct tm tt = {0}; | |||
double seconds; | |||
if (sscanf(date, | |||
"%04d-%02d-%02dT%02d:%02d:%lfZ", | |||
"%04d-%02d-%02dT%02d:%02d:%02d", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 按照标准,秒部分可能带小数(当然因为后端固定所以这个不考虑也问题不大
- 末尾的
Z
是 UTC 时区的标志,如果服务器返回的数据不带Z
的话,那可能需要重新检查并额外约定时区(Apifox 里面有写吗?
76f676a
to
3884281
Compare
3884281
to
a627922
Compare
fd68dc2
to
13e7dba
Compare
fix: first date time of week fix: get first date of week
refactor: drop v1 api
13e7dba
to
20858ac
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
clang-tidy review says "All clean, LGTM! 👍" |
clang-tidy review says "All clean, LGTM! 👍" |
eventId
type toeventId_t
(aliasstd::string
)