\ No newline at end of file
+
diff --git a/src/app/services/dataloader.service.ts b/src/app/services/dataloader.service.ts
index b929953..840f859 100644
--- a/src/app/services/dataloader.service.ts
+++ b/src/app/services/dataloader.service.ts
@@ -37,14 +37,17 @@ export class DataloaderService {
* Fetch the 'full fat' post. This returns HTML content that can be wrapped in any container, no sanitizing done.
* @param filename the filename for which the post needs to be fetched
*/
- getPost(type: String, id: String): Observable {
+ getPost(id: String): Observable {
const httpOptions = {
headers: new HttpHeaders({ 'Content-Type': 'text/html', 'Accept': 'text/html' })
};
// console.log('launching GET');
- const url = 'assets/post/' + type + '/' + id + '/full.html';
+ const url = 'assets/post/' + id + '/full.html';
+
// console.log('fetching: '+url);
+ console.log('getPost called: '+url);
+
return this.http.get(url, {responseType: 'text'});
}