File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -152,23 +152,23 @@ class ShellClass extends Native<NativeShell> {
152152 */
153153 public isKernelSU ( ) : boolean {
154154 // `proc.exist()` is always `false` on browsers
155- return this . _mountDetect ( / ( K S U | K e r n e l S U ) / i ) ;
155+ return this . _mountDetect ( / ( K S U | K e r n e l S U ) / ) ;
156156 }
157157
158158 /**
159159 * Determine if MMRL runs with Magisk
160160 */
161161 public isMagiskSU ( ) : boolean {
162162 // `proc.exist()` is always `false` on browsers
163- return this . _mountDetect ( / ( m a g i s k | c o r e \/ m i r r o r | c o r e \/ i m g ) / i ) ;
163+ return this . _mountDetect ( / ( m a g i s k | c o r e \/ m i r r o r | c o r e \/ i m g ) / ) ;
164164 }
165165
166166 /**
167167 * Determine if MMRL runs with APatch
168168 */
169169 public isAPatchSU ( ) : boolean {
170170 // `proc.exist()` is always `false` on browsers
171- return this . _mountDetect ( / ( A P D | A P a t c h ) / i ) ;
171+ return this . _mountDetect ( / ( A P D | A P a t c h ) / ) ;
172172 }
173173
174174 /**
You can’t perform that action at this time.
0 commit comments