You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/readme.graph.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -558,6 +558,10 @@ directive:
558
558
// Serialize streams (not supported by AutoREST).
559
559
let streamContentRegex = /(request\.Content\s*=)\s*null\s*\/\*\s*serializeToNode\s*doesn't.*.\s*(request\.Content\.Headers\.ContentType.*Parse)\("application\/json"\);/gmi
560
560
$ = $.replace(streamContentRegex, '$1 new global::System.Net.Http.StreamContent(body);\n $2("application/octet-stream");');
561
+
562
+
// Fix double = in date parameter. Temp fix for https://github.com/Azure/autorest.powershell/issues/1025.
563
+
let dateAssignmentRegex = /(date="\n.*)(\+.*"=")(.*\+.*date)/gmi
0 commit comments