We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb51de8 + 0dcff10 commit ee87e3cCopy full SHA for ee87e3c
samples/features/reporting-services/ssrs-migration-rss/ssrs_migration.rss
@@ -934,7 +934,10 @@ End Sub
934
935
'Helper function to link snk reference with relative paths
936
Function GetSnkPathRef(srcPath As String) As String
937
- Dim snkPath = srcPath.Remove(0, srcSiteUrl.LastIndexOf("/"))
+ Dim snkPath = srcPath
938
+ If srcSiteUrl isNot Nothing
939
+ snkPath = srcPath.Remove(0, srcSiteUrl.LastIndexOf("/"))
940
+ End If
941
Return snkPath
942
End Function
943
0 commit comments