Skip to content

Commit

Permalink
Fix uname on visionOS by @vincentneo.
Browse files Browse the repository at this point in the history
  • Loading branch information
levlam committed Mar 12, 2024
1 parent 44b42cc commit b41f321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdutils/td/utils/port/uname.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Slice get_operating_system_version() {
return "iOS" + os_version;
#elif TD_DARWIN_TV_OS
return "tvOS" + os_version;
#elif TD_DARWIN_VISIOM_OS
#elif TD_DARWIN_VISION_OS
return "visionOS" + os_version;
#elif TD_DARWIN_WATCH_OS
return "watchOS" + os_version;
Expand Down

0 comments on commit b41f321

Please sign in to comment.