Skip to content
Snippets Groups Projects
Commit 377494ca authored by Richard Alam's avatar Richard Alam
Browse files

- missed one file

parent 32431f62
No related branches found
No related tags found
No related merge requests found
package org.bigbluebutton.api;
import java.util.regex.Pattern;
public final class Util {
public static String cleanPresentationFilename(String name) {
String cleanFilename = Pattern.compile("[^0-9a-zA-Z_.]").matcher(name).replaceAll("-");
if (cleanFilename.startsWith(".")) {
return cleanFilename.substring(1);
} else {
return cleanFilename;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment