This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/js/signaling.js b/js/signaling.js | |
index a986767..497661a 100644 | |
--- a/js/signaling.js | |
+++ b/js/signaling.js | |
@@ -701,13 +701,12 @@ | |
}; | |
} else { | |
var user = OC.getCurrentUser(); | |
- var url = OC.generateUrl("/ocs/v2.php/apps/spreed/api/v1/signaling/backend"); | |
msg = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[10:11:16] <nickvergessen> dachinat: You can see my work in https://github.com/nickv-nextcloud/nextcloudgo/blob/master/nextcloudgo.go | |
[10:11:17] <NextcloudBot> Title: nextcloudgo/nextcloudgo.go at master · nickv-nextcloud/nextcloudgo · GitHub (at github.com) | |
[10:11:23] <nickvergessen> but I didnt do a lot lately | |
[10:12:38] <dachinat> nickvergessen: I'll check that | |
[10:13:23] <nickvergessen> it only does status and capabilities atm I think | |
[10:13:39] <nickvergessen> the question is whether we should aline the methods | |
[10:13:58] <-- BubuIIC ([email protected]) hat das Netzwerk verlassen (Quit: Leaving.) | |
[10:17:05] <dachinat> I think it's good | |
[10:17:24] <dachinat> I don't know much about Go though | |
[10:18:41] --> rhabbachi ([email protected]) hat #nextcloud-dev betreten |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Reply to: https://social.tchncs.de/@Billie/98993004627789275 | |
Let me clarify this a bit here, since there seems to be a bit of confusion with some | |
false conclusions. | |
Yes, the f-droid version of the Nextcloud Android app is without Google Play Services. | |
Therefor it comes without Push notifications at the moment and we also do not pull for | |
them repeatingly to not drain your battery. | |
However this is only for Push. You can still read the notifications in the notifications | |
section (screenshot which prints the "google play services missing" message above). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* This Source Code Form is subject to the terms of the Mozilla Public | |
* License, v. 2.0. If a copy of the MPL was not distributed with this file, | |
* You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
#invitation-table .itip-icon { | |
--itip-icon-partstat: -16px -16px; /* default: NEEDS-ACTION */ | |
--itip-icon-role: 0px; /* default: REQ-PARTICIPANT */ | |
--itip-icon-usertype: -32px; /* default: INDIVIDUAL */ | |
width: 16px; | |
height: 16px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule mod_ssl.c> | |
<VirtualHost *:443> | |
SSLEngine on | |
SSLCertificateFile /etc/apache2/ssl/nextcloud{version}.crt | |
SSLCertificateKeyFile /etc/apache2/ssl/nextcloud{version}.key | |
ServerAdmin webmaster@nextcloud{version}.local | |
ServerName nextcloud{version}.local | |
ServerAlias www.nextcloud{version}.local | |
DocumentRoot /home/nickv/Nextcloud/{version}/server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Technical information | |
===================== | |
The following list covers which files have failed the integrity check. Please read | |
the previous linked documentation to learn more about the errors and how to fix | |
them. | |
Results | |
======= | |
- admin_notifications | |
- EXTRA_FILE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var n_dark_themes = 33; | |
var tab = document.location.href; | |
var link = document.getElementById("dark-mode"); | |
var head = document.documentElement || document.head || document.querySelector("head"); | |
var hostname = function (url) { | |
url = url.replace("www.", ''); | |
var s = url.indexOf("//") + 2; | |
if (s > 1) { | |
var o = url.indexOf('/', s); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php b/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php | |
index 21b06fa1..ee3af635 100644 | |
--- a/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php | |
+++ b/doctrine/dbal/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php | |
@@ -81,6 +81,11 @@ class OCI8Statement implements \IteratorAggregate, Statement | |
private $boundValues = array(); | |
/** | |
+ * @var int|null | |
+ */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/js/mood.js b/js/mood.js | |
index a7e2bf2..64ac2a5 100644 | |
--- a/js/mood.js | |
+++ b/js/mood.js | |
@@ -48,7 +48,7 @@ | |
var result = {status: -1}; | |
$.ajax({ | |
method: 'GET', | |
- url: OC.generateUrl(OC.linkTo('mood', 'data/url')), | |
+ url: OC.generateUrl('apps/mood/data/url'), |