Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 3rdparty
Submodule 3rdparty updated 40 files
+1 −1 composer.json
+23 −23 composer.lock
+0 −2 composer/autoload_classmap.php
+0 −2 composer/autoload_static.php
+25 −25 composer/installed.json
+9 −9 composer/installed.php
+6 −0 guzzlehttp/guzzle/package-lock.json
+13 −93 guzzlehttp/guzzle/src/Client.php
+10 −65 guzzlehttp/guzzle/src/Cookie/CookieJar.php
+5 −25 guzzlehttp/guzzle/src/Cookie/FileCookieJar.php
+3 −10 guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php
+14 −77 guzzlehttp/guzzle/src/Cookie/SetCookie.php
+120 −746 guzzlehttp/guzzle/src/Handler/CurlFactory.php
+1 −19 guzzlehttp/guzzle/src/Handler/CurlHandler.php
+77 −949 guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php
+0 −122 guzzlehttp/guzzle/src/Handler/CurlVersion.php
+2 −13 guzzlehttp/guzzle/src/Handler/EasyHandle.php
+2 −22 guzzlehttp/guzzle/src/Handler/HeaderProcessor.php
+0 −198 guzzlehttp/guzzle/src/Handler/HostValidator.php
+3 −11 guzzlehttp/guzzle/src/Handler/ProxyEnvironment.php
+21 −136 guzzlehttp/guzzle/src/Handler/StreamHandler.php
+4 −9 guzzlehttp/guzzle/src/MessageFormatter.php
+0 −26 guzzlehttp/guzzle/src/Multiplexing.php
+1 −1 guzzlehttp/guzzle/src/Pool.php
+2 −21 guzzlehttp/guzzle/src/RedirectMiddleware.php
+1 −99 guzzlehttp/guzzle/src/RequestOptions.php
+16 −84 guzzlehttp/guzzle/src/Utils.php
+6 −107 guzzlehttp/guzzle/src/functions.php
+0 −6 guzzlehttp/promises/src/Utils.php
+2 −4 guzzlehttp/psr7/src/Header.php
+5 −16 guzzlehttp/psr7/src/Message.php
+6 −6 guzzlehttp/psr7/src/MessageTrait.php
+1 −1 guzzlehttp/psr7/src/MimeType.php
+3 −3 guzzlehttp/psr7/src/MultipartStream.php
+3 −3 guzzlehttp/psr7/src/Request.php
+3 −3 guzzlehttp/psr7/src/ServerRequest.php
+5 −11 guzzlehttp/psr7/src/Uri.php
+1 −1 guzzlehttp/psr7/src/UriComparator.php
+1 −1 guzzlehttp/psr7/src/UriNormalizer.php
+5 −64 guzzlehttp/psr7/src/Utils.php
4 changes: 2 additions & 2 deletions apps/profile/src/views/ProfileApp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ const otherActions = profileParameters.actions.slice(1)

const settingsUrl = generateUrl('/settings/user')
const emptyProfileMessage = isCurrentUser
? t('profile', 'You have not added any info yet')
: t('profile', '{user} has not added any info yet', { user: (profileParameters.displayname || profileParameters.userId || '') })
? t('profile', 'You have not added a headline or biography yet')
: t('profile', '{user} has not added a headline or biography yet', { user: (profileParameters.displayname || profileParameters.userId || '') })

onMounted(() => {
// Set the user's displayname or userId in the page title and preserve the default title of "Nextcloud" at the end
Expand Down
Loading