Merge pull request #4998 from willmmiles/fix-4929-sq

Add OTA metadata validation v2
This commit is contained in:
Will Miles
2025-11-08 17:41:42 -05:00
committed by GitHub
16 changed files with 651 additions and 108 deletions

View File

@@ -422,7 +422,7 @@ void prepareArtnetPollReply(ArtPollReply *reply) {
reply->reply_port = ARTNET_DEFAULT_PORT;
char * numberEnd = versionString;
char * numberEnd = (char*) versionString; // strtol promises not to try to edit this.
reply->reply_version_h = (uint8_t)strtol(numberEnd, &numberEnd, 10);
numberEnd++;
reply->reply_version_l = (uint8_t)strtol(numberEnd, &numberEnd, 10);