Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f3ed5fd9 authored by thilo's avatar thilo
Browse files

Merge branch 'eelo-mod' into 'master'

- small modifications to support eelo archives and https

See merge request eelo/LineageOTA!1
parents f1699701 0283710c
Loading
Loading
Loading
Loading

.idea/misc.xml

0 → 100644
+6 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="ProjectRootManager">
    <output url="file://$PROJECT_DIR$/out" />
  </component>
</project>
 No newline at end of file

.idea/modules.xml

0 → 100644
+8 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="ProjectModuleManager">
    <modules>
      <module fileurl="file://$PROJECT_DIR$/LineageOTA.iml" filepath="$PROJECT_DIR$/LineageOTA.iml" />
    </modules>
  </component>
</project>
 No newline at end of file

.idea/vcs.xml

0 → 100644
+6 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="VcsDirectoryMappings">
    <mapping directory="" vcs="Git" />
  </component>
</project>
 No newline at end of file

LineageOTA.iml

0 → 100644
+9 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
  <component name="NewModuleRootManager" inherit-compiler-output="true">
    <exclude-output />
    <content url="file://$MODULE_DIR$" />
    <orderEntry type="inheritedJdk" />
    <orderEntry type="sourceFolder" forTests="false" />
  </component>
</module>
 No newline at end of file
+1 −4
Original line number Diff line number Diff line
@@ -26,10 +26,7 @@

    use \JX\CmOta\CmOta;

    if( isset($_SERVER['HTTPS'] ) )
    $protocol = 'https://';
    else
        $protocol = 'http://';

    $app = new CmOta();
    $app
Loading