Skip to content

Commit fe7fc9f

Browse files
committed
Updated Domain
1 parent 09bd0ae commit fe7fc9f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</p>
2424

2525
<p align="center">
26-
<a href="https://littlelink-custom-demo.tru.io"><img src="https://i.imgur.com/EJNaMNW.png" alt="Live Demo" width="250" ></a>
26+
<a href="https://demo.littlelink-custom.com"><img src="https://i.imgur.com/EJNaMNW.png" alt="Live Demo" width="250" ></a>
2727
</p>
2828

2929
<br>
@@ -60,7 +60,7 @@ Feel free to register your account and try out all the features of LittleLink Cu
6060
6161
<br>
6262
<p align="center">
63-
<a href="https://littlelink-custom-demo.tru.io/"><img src="https://i.imgur.com/EJNaMNW.png" alt="Live Demo" width="350" ></a>
63+
<a href="https://demo.littlelink-custom.com/"><img src="https://i.imgur.com/EJNaMNW.png" alt="Live Demo" width="350" ></a>
6464
</p>
6565
6666
## Features

resources/views/layouts/sidebar.blade.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ function URL_exists(string $url): bool
146146
return str_contains(get_headers($url)[0], "200 OK");
147147
}
148148
// Sets $ServerExists to true if URL exists
149-
if (URL_exists("https://littlelink-custom.tru.io/version.json")){
149+
if (URL_exists("https://littlelink-custom.com/version.json")){
150150
$ServerExists = "true";
151151
}
152152
} catch (exception $e) {
@@ -158,15 +158,15 @@ function URL_exists(string $url): bool
158158
@if(file_exists(base_path("version.json")) and $ServerExists == 'true')
159159
160160
<?php // Requests newest version from server and sets it as variable
161-
$Vgit = file_get_contents("https://littlelink-custom.tru.io/version.json");
161+
$Vgit = file_get_contents("https://littlelink-custom.com/version.json");
162162
163163
// Requests current version from the local version file and sets it as variable
164164
$Vlocal = file_get_contents(base_path("version.json"));
165165
?>
166166
167167
<! –– If user has role admin AND newest GitHub release version is higher than the local one an update notice will be displayed ––>
168168
@if(auth()->user()->role == 'admin' and $Vgit > $Vlocal)
169-
<a style="color:#007bff" class="nav-link" href="https://littlelink-custom.tru.io/how-to-update.html" target="_blank" title="Click here to learn more about how to update">An update is available</a>
169+
<a style="color:#007bff" class="nav-link" href="https://littlelink-custom.com/how-to-update.html" target="_blank" title="Click here to learn more about how to update">An update is available</a>
170170
@endif
171171
@endif
172172
<! –– #### end update detection #### ––>

0 commit comments

Comments
 (0)